About 2,650 results
Open links in new tab
  1. Pyro Discussion Forum

    Aug 14, 2025 · Forum For Pyro Developers

  2. Batch processing numpyro models using Ray - forum.pyro.ai

    Mar 14, 2025 · Hello again, Related post: Batch processing Pyro models so cc: @fonnesbeck as I think he’ll be interested in batch processing Bayesian models anyway. I want to run lots of numpyro …

  3. 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,真实数据+噪声

  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. Use of LogNormal in Numpyro - Pyro Discussion Forum

    Oct 25, 2023 · Hi everyone, I am very new to Numpyro and hierarchical modeling. Recently I have been trying to build a hierarchical model where I have a hyper-prior (theta_group) which should be …

  6. 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 …

  7. 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 …

  8. Plotting trace from SVI - Misc. - Pyro Discussion Forum

    Aug 31, 2020 · To plot a trace obtained via MCMC sampling we do: import arviz as az data = az.from_pyro(mcmc) az.plot_trace(data, compact=True); where mcmc is the fitted MCMC object from …

  9. 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 …

  10. 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 …