API of implemented methods¶
This notebook spells out the API for all algorithms implemented in the sbi
toolbox:
-
Posterior estimation (NPE)
-
Likelihood estimation (NLE)
-
Likelihood-ratio estimation (NRE)
-
Utilities
Posterior estimation (NPE)¶
Fast ε-free Inference of Simulation Models with Bayesian Conditional Density Estimation
by Papamakarios & Murray (NeurIPS 2016)
[PDF] [BibTeX]
# Example setup
import torch
from sbi.utils import BoxUniform
# Define the prior
num_dims = 2
num_sims = 1000
num_rounds = 2
prior = BoxUniform(low=torch.zeros(num_dims), high=torch.ones(num_dims))
simulator = lambda theta: theta + torch.randn_like(theta) * 0.1
x_o = torch.tensor([0.5, 0.5])
from sbi.inference import NPE_A
inference = NPE_A(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x, proposal=proposal).train()
posterior = inference.build_posterior().set_default_x(x_o)
proposal = posterior
Automatic posterior transformation for likelihood-free inference
by Greenberg, Nonnenmacher & Macke (ICML 2019)
[PDF]
from sbi.inference import NPE
inference = NPE(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x, proposal=proposal).train()
posterior = inference.build_posterior().set_default_x(x_o)
proposal = posterior
BayesFlow: Learning complex stochastic models with invertible neural
networks
by Radev, S. T., Mertens, U. K., Voss, A., Ardizzone, L., & Köthe,
U. (2020) (IEEE transactions on neural networks and learning systems 2020)
Paper
The density estimation part of BayesFlow is equivalent to single-round NPE. The
additional contribution of the paper are several embedding networks for high-dimensional
data including permutation invariant embeddings. Similar embeddings networks are
implemented in sbi
as well, under sbi.neural_nets.embedding_nets
.
# Posterior estimation with BayesFlow is equivalent to single-round NPE.
from sbi.inference import NPE
inference = NPE(prior)
theta = prior.sample((num_sims,))
x = simulator(theta)
inference.append_simulations(theta, x).train()
posterior = inference.build_posterior()
samples = posterior.sample((1000,), x=x_o)
Truncated proposals for scalable and hassle-free simulation-based inference
by Deistler, Goncalves & Macke (NeurIPS 2022)
[Paper]
from sbi.inference import NPE
from sbi.utils import RestrictedPrior, get_density_thresholder
inference = NPE(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train(force_first_round_loss=True)
posterior = inference.build_posterior().set_default_x(x_o)
accept_reject_fn = get_density_thresholder(posterior, quantile=1e-4)
proposal = RestrictedPrior(prior, accept_reject_fn, sample_with="rejection")
Flow Matching for Scalable Simulation-Based Inference
by Dax, Wildberger, Buchholz, Green, Macke,
Schölkopf (NeurIPS 2023)
[Paper]
from sbi.inference import FMPE
inference = FMPE(prior)
# FMPE does support multiple rounds of inference
theta = prior.sample((num_sims,))
x = simulator(theta)
inference.append_simulations(theta, x).train()
posterior = inference.build_posterior().set_default_x(x_o)
Neural posterior score estimation
based on:
- Compositional Score Modeling for Simulation-based Inference by Geffner, T., Papamakarios, G., & Mnih, A. (ICML 2023) [Paper]
- Sequential Neural Score Estimation: Likelihood-Free Inference with Conditional Score Based Diffusion Models by Sharrock, L., Simons, J., Liu, S., & Beaumont, M. (ICML 2024) [Paper]
Note that currently only the single-round variant is implemented.
from sbi.inference import NPSE
theta = prior.sample((num_sims,))
x = simulator(theta)
inference = NPSE(prior, sde_type="ve")
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior().set_default_x(x_o)
Likelihood estimation (NLE)¶
Sequential neural likelihood: Fast likelihood-free inference with autoregressive flows
by Papamakarios, Sterratt & Murray (AISTATS 2019)
[PDF] [BibTeX]
from sbi.inference import NLE
inference = NLE(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior(mcmc_method="slice_np_vectorized",
mcmc_parameters={"num_chains": 20,
"thin": 5})
proposal = posterior.set_default_x(x_o)
Variational methods for simulation-based inference
by Glöckler, Deistler, Macke (ICLR 2022)
[Paper]
from sbi.inference import NLE
inference = NLE(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior(sample_with="vi",
vi_method="fKL").set_default_x(x_o)
proposal = posterior.train() # Train VI posterior on given x_o.
Flexible and efficient simulation-based inference for models of decision-making
by Boelts, Lueckmann, Gao, Macke (Elife 2022)
[Paper]
from sbi.inference import MNLE
inference = MNLE(prior)
theta = prior.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior().set_default_x(x_o)
Likelihood-ratio estimation (NRE)¶
Likelihood-free MCMC with Amortized Approximate Likelihood Ratios
by Hermans, Begy & Louppe (ICML 2020)
[PDF]
from sbi.inference import NRE_A
inference = NRE_A(prior)
theta = prior.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior().set_default_x(x_o)
On Contrastive Learning for Likelihood-free Inference
Durkan, Murray & Papamakarios (ICML 2020)
[PDF].
from sbi.inference import NRE
inference = NRE(prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train()
posterior = inference.build_posterior(mcmc_method="slice_np_vectorized",
mcmc_parameters={"num_chains": 20,
"thin": 5})
proposal = posterior.set_default_x(x_o)
Towards Reliable Simulation-Based Inference with Balanced Neural Ratio Estimation
by Delaunoy, Hermans, Rozet, Wehenkel & Louppe (NeurIPS 2022)
[PDF]
from sbi.inference import BNRE
inference = BNRE(prior)
theta = prior.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train(regularization_strength=100.)
posterior = inference.build_posterior().set_default_x(x_o)
Contrastive Neural Ratio Estimation
Benjamin Kurt Miller, Christoph Weniger, Patrick Forré (NeurIPS 2022)
[PDF]
# The main feature of NRE-C is producing an exact ratio of densities at optimum,
# even when using multiple contrastive pairs (classes).
from sbi.inference import NRE_C
inference = NRE_C(prior)
proposal = prior
theta = proposal.sample((num_sims,))
x = simulator(theta)
_ = inference.append_simulations(theta, x).train(
num_classes=5, # sees `2 * num_classes - 1` marginally drawn contrastive pairs.
gamma=1.0, # controls the weight between terms in its loss function.
)
posterior = inference.build_posterior().set_default_x(x_o)
Diagnostics and utilities¶
Simulation-based calibration
by Talts, Betancourt, Simpson, Vehtari, Gelman (arxiv 2018)
[Paper])
from sbi.diagnostics import run_sbc
from sbi.analysis import sbc_rank_plot
thetas = prior.sample((1000,))
xs = simulator(thetas)
# SBC is fast for fully amortized NPE.
inference = NPE(prior)
theta = prior.sample((num_sims,))
x = simulator(theta)
inference.append_simulations(theta, x).train()
posterior = inference.build_posterior()
ranks, dap_samples = run_sbc(
thetas, xs, posterior, num_posterior_samples=1_000
)
fig, axes = sbc_rank_plot(
ranks=ranks,
num_posterior_samples=1000,
plot_type="hist",
num_bins=20,
)
Expected coverage (sample-based)
as computed in Deistler, Goncalves, Macke (Neurips 2022) [Paper] and in Rozet, Louppe (2021) [Paper]
thetas = prior.sample((100,))
xs = simulator(thetas)
ranks, dap_samples = run_sbc(
thetas,
xs,
posterior,
num_posterior_samples=1_000,
reduce_fns=posterior.log_prob # Difference to SBC.
)
# NOTE: Here we obtain a single rank plot because ranks are calculated
# for the entire posterior and not for each marginal like in SBC.
fig, axes = sbc_rank_plot(
ranks=ranks,
num_posterior_samples=1000,
plot_type="hist",
num_bins=20,
)
TARP: Sampling-Based Accuracy Testing of Posterior Estimators for General Inference
Lemos, Coogan, Hezaveh & Perreault-Levasseur (ICML 2023)
[Paper]
from sbi.diagnostics.tarp import run_tarp
from sbi.analysis import plot_tarp
thetas = prior.sample((1000,))
xs = simulator(thetas)
expected_coverage, ideal_coverage = run_tarp(
thetas,
xs,
posterior,
references=None, # optional, defaults to uniform samples across parameter space.
num_posterior_samples=1_000,
)
fix, axes = plot_tarp(expected_coverage, ideal_coverage)
Restriction estimator
by Deistler, Macke & Goncalves (PNAS 2022)
[Paper]
from sbi.inference import NPE
from sbi.utils import RestrictionEstimator
restriction_estimator = RestrictionEstimator(prior=prior)
proposal = prior
for _ in range(num_rounds):
theta = proposal.sample((num_sims,))
x = simulator(theta)
restriction_estimator.append_simulations(theta, x)
classifier = restriction_estimator.train()
proposal = restriction_estimator.restrict_prior()
all_theta, all_x, _ = restriction_estimator.get_simulations()
inference = NPE(prior)
density_estimator = inference.append_simulations(all_theta, all_x).train()
posterior = inference.build_posterior()