Flexible and fast inference in Python
Project description
BlackJAX
What is BlackJAX?
BlackJAX is a library of samplers for JAX that works on CPU as well as GPU.
It is not a probabilistic programming library. However it integrates really well with PPLs as long as they can provide a (potentially unnormalized) log-probability density function compatible with JAX.
Who should use BlackJAX?
BlackJAX should appeal to those who:
- Have a logpdf and just need a sampler;
- Need more than a general-purpose sampler;
- Want to sample on GPU;
- Want to build upon robust elementary blocks for their research;
- Are building a probabilistic programming language;
- Want to learn how sampling algorithms work.
Quickstart
Installation
BlackJAX is written in pure Python but depends on XLA via JAX. Since the JAX installation depends on your CUDA version BlackJAX does not list JAX as a dependency. If you simply want to use JAX on CPU, install it with:
pip install jax jaxlib
Follow these instructions to install JAX with the relevant hardware acceleration support.
Then install BlackJAX
pip install blackjax
Example
Let us look at a simple self-contained example sampling with NUTS:
import jax
import jax.numpy as jnp
import jax.scipy.stats as stats
import numpy as np
import blackjax
observed = np.random.normal(10, 20, size=1_000)
def logprob_fn(x):
logpdf = stats.norm.logpdf(observed, x["loc"], x["scale"])
return jnp.sum(logpdf)
# Build the kernel
step_size = 1e-3
inverse_mass_matrix = jnp.array([1., 1.])
nuts = blackjax.nuts(logprob_fn, step_size, inverse_mass_matrix)
# Initialize the state
initial_position = {"loc": 1., "scale": 2.}
state = nuts.init(initial_position)
# Iterate
rng_key = jax.random.PRNGKey(0)
for _ in range(100):
_, rng_key = jax.random.split(rng_key)
state, _ = nuts.step(rng_key, state)
See this notebook for more examples of how to use the library: how to write inference loops for one or several chains, how to use the Stan warmup, etc.
Philosophy
What is BlackJAX?
BlackJAX bridges the gap between "one liner" frameworks and modular, customizable libraries.
Users can import the library and interact with robust, well-tested and performant samplers with a few lines of code. These samplers are aimed at PPL developers, or people who have a logpdf and just need a sampler that works.
But the true strength of BlackJAX lies in its internals and how they can be used to experiment quickly on existing or new sampling schemes. This lower level exposes the building blocks of inference algorithms: integrators, proposal, momentum generators, etc and makes it easy to combine them to build new algorithms. It provides an opportunity to accelerate research on sampling algorithms by providing robust, performant and reusable code.
Why BlackJAX?
Sampling algorithms are too often integrated into PPLs and not decoupled from the rest of the framework, making them hard to use for people who do not need the modeling language to build their logpdf. Their implementation is most of the time monolithic and it is impossible to reuse parts of the algorithm to build custom kernels. BlackJAX solves both problems.
How does it work?
BlackJAX allows to build arbitrarily complex algorithms because it is built around a very general pattern. Everything that takes a state and returns a state is a transition kernel, and is implemented as:
new_state, info = kernel(rng_key, state)
kernels are stateless functions and all follow the same API; state and information related to the transition are returned separately. They can thus be easily composed and exchanged. We specialize these kernels by closure instead of passing parameters.
Contributions
What contributions?
We value the following contributions:
- Bug fixes
- Documentation
- High-level sampling algorithms from any family of algorithms: random walk, hamiltonian monte carlo, sequential monte carlo, variational inference, inference compilation, etc.
- New building blocks, e.g. new metrics for HMC, integrators, etc.
How to contribute?
- Run
pip install -r requirements.txt
to install all the dev dependencies. - Run
pre-commit run --all-files
andmake test
before pushing on the repo; CI should pass if these pass locally.
Acknowledgements
Some details of the NUTS implementation were largely inspired by Numpyro's.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file blackjax-0.7.0.tar.gz
.
File metadata
- Download URL: blackjax-0.7.0.tar.gz
- Upload date:
- Size: 59.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61bef37190d1b0070b8c5b51828bc7e3ba2734f5455abaf58c536fe933d26b1f |
|
MD5 | 7d6652d52261b01035c68fce784cf063 |
|
BLAKE2b-256 | 7b6623468d8054e588464d63b8fe2eb470b39a1f04a2e85944875b1f320f9363 |
File details
Details for the file blackjax-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: blackjax-0.7.0-py3-none-any.whl
- Upload date:
- Size: 87.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fde8a617c831a9f2d5f2c18522721fc445684b169f705f2a4c4c37d647c36cd8 |
|
MD5 | 78fdad40e3c32d9052f5ffc581db15ef |
|
BLAKE2b-256 | a80e8c7451552764c7ccbe9dac26db5c660e3069b192d663b3aeb61481a25248 |