A unified probabilistic programming library bridging the gap between user-friendly R syntax and high-performance JAX computation.
Run bespoke models on CPU, GPU, or TPU with ease.
BFR (BI) provides a unified experience across R, Python, and Julia. Whether you work in R's formula syntax, Python's object-oriented approach, or Julia's mathematical elegance, the model logic remains consistent.
- ✅ Zero Context Switching: Variable names, distribution signatures, and model logic remain consistent.
- ✅ NumPyro Power: Both interfaces compile down to XLA via JAX for blazing fast inference.
- ✅ Rich Diagnostics: Seamless integration with ArviZ for posterior analysis.
| R Syntax | Python Syntax | Julia Syntax |
|---|---|---|
model <- function(height, weight){
# Priors
sigma = bf.dist.uniform(0, 50, name='sigma', shape=c(1))
alpha = bf.dist.normal(178, 20, name='alpha', shape=c(1))
beta = bf.dist.normal(0, 1, name='beta', shape=c(1))
# Likelihood
mu = alpha + beta * weight
bf.dist.normal(mu, sigma, obs=height)
} |
def model(height, weight):
# Priors
sigma = bf.dist.uniform(0, 50, name='sigma', shape=(1,))
alpha = bf.dist.normal(178, 20, name='alpha', shape=(1,))
beta = bf.dist.normal(0, 1, name='beta', shape=(1,))
# Likelihood
mu = alpha + beta * weight
bf.dist.normal(mu, sigma, obs=height) |
@BI function model(weight, height)
# Priors
sigma = bf.dist.uniform(0, 50, name='sigma', shape=(1,))
alpha = bf.dist.normal(178, 20, name='alpha', shape=(1,))
beta = bf.dist.normal(0, 1, name='beta', shape=(1,))
# Likelihood
mu = alpha + beta * weight
bf.dist.normal(mu, sigma, obs=height)
end |
Leveraging Just-In-Time (JIT) compilation, BI outperforms traditional engines on standard hardware and unlocks massive scalability on GPU clusters for large datasets.
Benchmark: Network Size 100 (Lower is Better)
| Engine | Execution Time | Relative Performance |
|---|---|---|
| STAN (CPU) | ████████████████████████████ |
Baseline |
| BI (CPU) | ████████████ |
~30x Faster |
| BI (GPU) | ██ |
~200x Faster |
> Comparison of execution time for a Social Relations Model. Source: Sosa et al. (2026).
Use devtools to pull the latest development version from GitHub.
if (!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools")
devtools::install_github("https://github.com/BGN-for-ASNA/BIR")Run the starting test to create the Python virtual environment managed by reticulate.
library(BayesForge)
# Run the starting test to install Python dependencies
BF_starting_test()Choose 'cpu', 'gpu', or 'tpu' when importing the library.
# Initialize on CPU (default) or GPU/TPU
m <- importBF(platform = 'cpu')- One-hot encoding
- Index variable conversion
- Scaling and normalization
- Linear & Generalized Linear Models: Regression, Binomial, Poisson, Negative Binomial, etc.
- Hierarchical/Multilevel Models: Varying intercepts and slopes.
- Time Series & Processes: Gaussian Processes, Gaussian Random Walks, State Space Models.
- Mixture Models: GMM, Dirichlet Process Mixtures.
- Network Models: Network-based diffusion, Block models.
- Bayesian Neural Networks (BNN).
- Posterior summary statistics and plots.
- Trace plots, Density plots, Autocorrelation.
- WAIC and LOO (ELPD) model comparison.
- R-hat and Effective Sample Size (ESS).
The package provides wrappers for a comprehensive set of distributions from NumPyro.
bf.dist.normal,bf.dist.uniform,bf.dist.student_tbf.dist.cauchy,bf.dist.halfcauchy,bf.dist.halfnormalbf.dist.gamma,bf.dist.inverse_gamma,bf.dist.exponentialbf.dist.beta,bf.dist.beta_proportionbf.dist.laplace,bf.dist.asymmetric_laplacebf.dist.log_normal,bf.dist.log_uniformbf.dist.pareto,bf.dist.weibull,bf.dist.gumbelbf.dist.chi2,bf.dist.gompertz
bf.dist.bernoulli,bf.dist.bfnomialbf.dist.poisson,bf.dist.negative_binomialbf.dist.geometric,bf.dist.discrete_uniformbf.dist.beta_binomial,bf.dist.zero_inflated_poisson
bf.dist.multivariate_normal,bf.dist.multivariate_student_tbf.dist.dirichlet,bf.dist.dirichlet_multinomialbf.dist.multinomialbf.dist.lkj,bf.dist.lkj_choleskybf.dist.wishart,bf.dist.wishart_cholesky
bf.dist.gaussian_random_walkbf.dist.gaussian_state_spacebf.dist.euler_maruyamabf.dist.car(Conditional AutoRegressive)
bf.dist.mixture,bf.dist.mixture_same_familybf.dist.truncated_normal,bf.dist.truncated_cauchybf.dist.lower_truncated_power_law
(See package documentation for the full list)
For full documentation of functions and parameters, you can use the built-in R help or the package helper:
# Open package documentation
bf.doc()
# Help for a specific function
?bf.dist.normal- ✅ Linux
- ✅ macOS
- ✅ Windows
GPU support available on compatible systems with JAX GPU installation.
BFR
Based on "The Bayesian Inference library for Python, R, Julia" by Sosa, McElreath, & Ross (2026).
Official website | Issues | Quick Start
© 2026 Bayesian Inference Team. Released under GPL-3.0.