numpyro icon indicating copy to clipboard operation
numpyro copied to clipboard

Probabilistic programming with NumPy powered by JAX for autograd and JIT compilation to GPU/TPU/CPU.

Results 154 numpyro issues
Sort by recently updated
recently updated
newest added

I was wondering whether there would an interest to add inference methods which support programs with stochastic support? If yes, I would be willing to add inference methods from the...

discussion

Minimal example: ```python import jax import jax.numpy as jnp from jax.random import PRNGKey import numpyro import numpyro.distributions as dist from numpyro.infer import MCMC, NUTS, Trace_ELBO, SVI from numpyro.infer.reparam import NeuTraReparam...

bug

Hi all, are there any plans to implement pathfinder ([arXiv:2108.03782](https://arxiv.org/abs/2108.03782)) ? If so, I would be up for implementing it. Cheers, Simon

enhancement

NumPyro is quite a good package about probabilistic programming, I have seen there is a tutorial about AR(2). Cause VAR is quite important in economics, wish you and your team...

good first issue
Tutorials/Examples

I'm a collaborator on this project https://github.com/JakobRobnik/MicroCanonicalHMC, and we're interested in either adding our algorithm to NumPyro, or using NumPyro in our codebase. With that in mind, we have a...

enhancement

Currently, block hander does not expose message to outer seed handler. Users have to seed the blocked program explicitly. Hence the blocked program is no longer stochastic. To make it...

enhancement

Hi all, I believe there is an issue with ``BlockNeuralAutoregressiveTransform``s not forming properly normalised densities when the inverse is used to transform a distribution (the same issue as we have...

discussion

Hi, In `Trace_ELBO`, the `num_particles` argument allows one to effectively introduce a batch size in estimating the ELBO gradient if `num_particles > 1`. By default, it's vectorized over the `num_particles`....

enhancement
good first issue

Hello, I am trying to build a Docker image from a model that I created using Numpyro. However, when I try to build the Dockerfile given [here](https://github.com/pyro-ppl/numpyro/blob/master/docker/release/Dockerfile) I get the...

question

One of the features not supported by `TraceEnum_ELBO` is that you cannot subsample a local variable when it depends on a global variable that is enumerated in the model because...

WIP