About 2,640 results
Open links in new tab
  1. Help post,shape problem - Pyro Discussion Forum

    Apr 25, 2025 · with pyro.plate("data", x.size(0)): pyro.sample("obs", dist.Normal(mu, sigma), obs=y.squeeze(-1),infer={"scale": annealing_factor}) #obs,真实数据+噪声

  2. Pyro Discussion Forum

    Aug 14, 2025 · Forum For Pyro Developers

  3. Learning rate scheduling in numpyro - Pyro Discussion Forum

    Sep 18, 2023 · pyro provides access to the pytorch schedulers, and the pyro ClippedAdam also has a specific learning rate decay parameter. I can not find anything of the sort in numpyro, however, or …

  4. Reducing MCMC memory usage - numpyro - Pyro Discussion Forum

    Oct 15, 2023 · I am running NUTS/MCMC (on multiple CPU cores) for a quite large dataset (400k samples) for 4 chains x 2000 steps. mcmc.run actually ran until the end, but then died with an out-of …

  5. Implementation & normalizing flow in matrix normal distribution

    Nov 1, 2024 · Hi, I’m working on a model where the likelihood follows a matrix normal distribution, X ~ MN_{n,p} (M, U, V). I’m using conjugate priors: M ~ MN U ~ Inverse Wishart V ~ Inverse Wishart As …

  6. Moving MCMC from CPU to GPU - Pyro Discussion Forum

    May 9, 2022 · Hi all, I’ve read a few posts on the forum about how to use GPU for MCMC: Transfer SVI, NUTS and MCMC to GPU (Cuda), How to move MCMC run on GPU to CPU and Training on single …

  7. Trouble Initializing Parameters for SVI - forum.pyro.ai

    Apr 22, 2025 · the issue was because this was not differentiable! the fix was following guidance from Best practice to handle division by zero in auto-differentiation · Issue #5039 · jax-ml/jax · GitHub

  8. Extra sampling site in manual guide compared to model - numpyro

    Mar 12, 2025 · i see. this would appear to be a bug/unsupported feature. if you like, you can make a feature request on github (please include a code snippet and stack trace). however, in the short term …

  9. Simplex in model become nan - Misc. - Pyro Discussion Forum

    Aug 18, 2022 · I’m building a really simple HMM with Gaussian emission. import pyro import pyro.distributions as dist from pyro import poutine from pyro.optim import Adam import torch import …

  10. Variational Inference for Dirichlet process clustering - Pyro ...

    Jan 31, 2018 · Hi there! This is my first time using Pyro so I am very excited to see what I can built with it.🙂 Specifically, I am trying to do finite Dirichlet Process clustering with Variational Inference. I want to …