You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyro.contrib.minipyro now supports constrained parameters.
pyro.generic module to support an API for backend-agnostic Pyro models. This makes it easier to switch between full Pyro and Minipyro. New backends like funsor and numpyro are under active development.
pyro.contrib.conjugate that provides utilities for exact inference on a small subset of conjugate models.
Code changes and bug fixes
Optimized Categorical.log_prob so that evaluation on the distribution's support is much faster leading to almost 2X faster inference on models with enumerated discrete random variables.
pyro.module ignores params with requires_grad=False.
Correct shape inference in MaskedDistribution when run under torch.jit.trace.
Fixed infer_discrete to support plates of size 1 and variable dependencies across plate contexts.