CaliBrain: A Python toolbox for uncertainty estimation and calibration in EEG/MEG inverse source imaging.
Inverse source imaging is an ill-posed problem: different source configurations can explain the same sensor data. CaliBrain addresses a central question in Bayesian source imaging: are posterior uncertainty estimates empirically reliable? The toolbox provides simulation-based workflows for generating source activity, propagating it through forward models, reconstructing posterior source estimates, quantifying empirical coverage, and evaluating recalibration maps under controlled experimental conditions.
The documentation is hosted on Read the Docs: https://calibrain.readthedocs.io/
For runnable end-to-end examples, see the tutorials and workflow documentation on Read the Docs.
If you use CaliBrain in academic work, please cite the software archive:
Orabe, Mohammad, Huseynov, Ismail T., Nagarajan, Srikantan, & Haufe, Stefan. (2026). CaliBrain: A Python toolbox for uncertainty estimation and calibration in EEG/MEG inverse source imaging (v1.0.3). Zenodo. https://doi.org/10.5281/zenodo.21261767
The example below simulates one inverse problem, reconstructs sources, and plots empirical coverage before and after isotonic recalibration.
Simulate source activity:
import matplotlib.pyplot as plt
import numpy as np
from calibrain import (
BMN,
LeadfieldBuilder,
SensorSimulator,
SourceEstimator,
SourceSimulator,
UncertaintyCalibrator,
UncertaintyEstimator,
)
# Simulate a small fixed-orientation inverse problem.
x_true, _ = SourceSimulator().simulate(n_sources=64, nnz=4, seed=0)
# Build a random leadfield, simulate sensor data, and reconstruct sources.
L = LeadfieldBuilder(leadfield_dir="unused").get_leadfield(
retrieve_mode="random",
orientation_type="fixed",
n_sensors=20,
n_sources=x_true.shape[0],
)
_, y_noisy, noise, _ = SensorSimulator().simulate(x_true, L, seed=0)
result = SourceEstimator(solver=BMN, noise_var=float(np.var(noise))).fit(L, y_noisy).predict()
# Compute calibration curves before and after isotonic recalibration.
nominal_coverages = np.linspace(0.0, 1.0, 11)
uncertainty = UncertaintyEstimator(nominal_coverages=nominal_coverages)
calibrator = UncertaintyCalibrator(nominal_coverages=nominal_coverages)
posterior_var = uncertainty.posterior_variance_from_cov(result["posterior_cov"])
pre_curve = uncertainty.calibration_curve_intervals_aggregated(
x_true=x_true,
x_hat=result["posterior_mean"],
posterior_var=posterior_var,
)
mapping = calibrator.fit_mapping(
x_true=x_true,
x_hat=result["posterior_mean"],
posterior_var=posterior_var,
)
post_curve = calibrator.evaluate_with_mapping(
x_true=x_true,
x_hat=result["posterior_mean"],
posterior_var=posterior_var,
mapping=mapping,
)
# Plot nominal vs empirical coverage.
plt.plot([0, 1], [0, 1], "--", color="0.5", label="perfect calibration")
plt.plot(pre_curve["nominal_coverages"], pre_curve["empirical_coverages"], "o-", label="before calibration")
plt.plot(post_curve["nominal_coverages"], post_curve["empirical_coverages"], "o-", label="after calibration")
plt.xlabel("Nominal coverage")
plt.ylabel("Empirical coverage")
plt.legend()
plt.tight_layout()
plt.show()The package follows this workflow:
- generate source-level ground truth under controlled sparsity and amplitude assumptions;
- project sources to sensors through a leadfield and add noise at defined SNR;
- reconstruct posterior means and uncertainty summaries with inverse solvers;
- convert uncertainty summaries into intervals, ellipses, or ellipsoids;
- compare empirical against nominal coverage;
- fit isotonic recalibration functions on training splits and evaluate them on held-out splits.
CaliBrain currently supports fixed and free-orientation source models for inverse source imaging methods:
gamma_map_sflexfor Gamma-MAP reconstruction with sparse basis field expansions;gamma_lambda_map_sflexfor the S-FLEX Gamma-MAP variant with joint sparsity and lambda regularization;BMNas a Bayesian minimum norm baseline;BMN_jointas a Bayesian minimum norm variant with joint gamma/lambda learning.
CaliBrain complements broader neurophysiology analysis libraries, general uncertainty-calibration toolkits, and standard inverse-solver workflows rather than replacing them.
Its scope is narrower and more specific: CaliBrain focuses on simulation-based uncertainty estimation and calibration for EEG/MEG inverse source imaging, including source-level intervals, local covariance-based ellipsoids, empirical coverage analysis, and recalibration across controlled evaluation conditions.
From PyPI:
python -m pip install calibrainFrom a local checkout:
git clone https://github.com/braindatalab/CaliBrain.git
cd CaliBrain
python -m pip install -e .Contribution guidelines are available in CONTRIBUTING.md.
The full development guide is also available in the documentation.
CaliBrain is distributed under the BSD 3-Clause License. See LICENSE.


