Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add two ensemble sampling methods #1692

Merged
merged 25 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions numpyro/infer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
TraceGraph_ELBO,
TraceMeanField_ELBO,
)
from numpyro.infer.ensemble import AIES, ESS
from numpyro.infer.hmc import HMC, NUTS
from numpyro.infer.hmc_gibbs import HMCECS, DiscreteHMCGibbs, HMCGibbs
from numpyro.infer.initialization import (
Expand All @@ -29,6 +30,7 @@
from . import autoguide, reparam

__all__ = [
"AIES",
"autoguide",
"init_to_feasible",
"init_to_mean",
Expand All @@ -41,6 +43,7 @@
"BarkerMH",
"DiscreteHMCGibbs",
"ELBO",
"ESS",
"HMC",
"HMCECS",
"HMCGibbs",
Expand Down
Loading
Loading