PyTorch uncertainty quantification toolkit with Bayes-by-Backprop VI, Laplace, SGLD, MC Dropout, and Gaussian Processes.
Project description
deepuq
Unified deep learning uncertainty quantification (UQ) toolkit in PyTorch.
Implements five widely used methods:
- Variational Inference (VI) — Bayes by Backprop with BayesianLinear layers.
- Laplace Approximation — native backends for all supported structures (
diag,fisher_diag,lowrank_diag,block_diag,kron,full). - MCMC (SGLD) — Stochastic Gradient Langevin Dynamics sampler for NN posteriors.
- MC Dropout — Keep dropout active at test-time and aggregate Monte Carlo predictions.
- Gaussian Processes (GPs) — Exact regression and sparse inducing-point approximations with RBF kernels.
Examples and tutorials focus on a synthetic Euler-Bernoulli beam deflection regression task to illustrate confidence bounds.
Method Summary
| Method Family | Implemented Variants | Main Wrapper / Class | Tutorial |
|---|---|---|---|
| Variational Inference | Bayes by Backprop | BayesianLinear, vi_elbo_step, predict_vi_uq |
notebooks/BayesByBackprop_Tutorial.ipynb |
| Laplace Approximation | diag, fisher_diag, lowrank_diag, block_diag, kron, full |
LaplaceWrapper, predict_uq |
notebooks/laplace/Laplace_HessianComparison_Tutorial.ipynb |
| MCMC | Stochastic Gradient Langevin Dynamics | SGLDOptimizer, collect_posterior_samples, predict_with_samples_uq |
notebooks/SGLD_Tutorial.ipynb |
| MC Dropout | Monte Carlo dropout inference | MCDropoutWrapper, predict_uq |
notebooks/MC_Dropout_Tutorial.ipynb |
| Gaussian Process | Exact GP (RBFKernel) |
GaussianProcessRegressor, predict_uq |
notebooks/GaussianProcess_Tutorial.ipynb |
| Sparse GP | Variational inducing-point GP | SparseGaussianProcessRegressor, predict_uq |
notebooks/SparseGaussianProcess_Tutorial.ipynb |
Documentation Website
- Docs home: https://vispikarkaria.github.io/Deep-UQ/
- Tutorials: https://vispikarkaria.github.io/Deep-UQ/tutorials/
- API reference: https://vispikarkaria.github.io/Deep-UQ/api/
Install (local)
git clone https://github.com/Vispikarkaria/Deep-UQ.git
cd Deep-UQ
pip install -e .
Install (PyPI)
pip install uqdeepnn
Publish / Update PyPI Release
Releases are tag-driven via .github/workflows/release.yml and PyPI trusted publishing.
- Bump version in
pyproject.toml. - Commit and push to
master. - Tag and push:
git tag v0.1.5
git push origin v0.1.5
- Verify package on PyPI:
pip install -U uqdeepnn
python -c "import deepuq; print(deepuq.__version__)"
Detailed release checklist: RELEASING.md.
Quickstart
import torch
from deepuq.models import MLP
from deepuq.methods import MCDropoutWrapper
# Beam deflection regression input grid
L = 2.0
x = torch.linspace(0.0, L, 200).unsqueeze(-1)
# After training an MLP, enable MC Dropout for uncertainty estimates
model = MLP(input_dim=1, hidden_dims=[128, 128], output_dim=1, p_drop=0.15)
uq = MCDropoutWrapper(model, n_mc=200, apply_softmax=False)
result = uq.predict_uq(x)
print(result.mean.shape, result.total_var.shape)
See the examples/ folder for end-to-end regression scripts on the Euler-Bernoulli beam deflection problem.
Common UQResult API
All methods now expose a standardized uncertainty container through predict_uq(...) (or method-specific helper functions):
mean: predictive mean (or class probability mean for classification)epistemic_var: model uncertaintyaleatoric_var: noise/data uncertainty when availabletotal_var: combined predictive uncertaintyprobs,probs_var: classification probability momentsmetadata: method-specific context
from deepuq.methods import LaplaceWrapper
la = LaplaceWrapper(model, likelihood="regression", hessian_structure="diag")
la.fit(train_loader)
uq = la.predict_uq(x_batch, n_samples=100)
print(uq.mean.shape, uq.total_var.shape)
Methods
- VI: Place Gaussian posteriors over weights with reparameterization trick and KL regularization.
- Laplace: Fit a Gaussian around a MAP solution using one of multiple curvature structures (
diag,fisher_diag,lowrank_diag,block_diag,kron,full) and calibrate with a prior precision. - MCMC (SGLD): Inject Gaussian noise into SGD steps to sample from the posterior.
- MC Dropout: Use dropout at inference; Monte Carlo average for mean and variance.
- Gaussian Processes: Closed-form posterior inference with RBF kernels for regression and uncertainty-aware interpolation.
For Laplace users:
- All supported structures are implemented natively in
deepuq. - Scientific details and equations:
https://vispikarkaria.github.io/Deep-UQ/methods/laplace/
Tutorials
notebooks/BayesByBackprop_Tutorial.ipynb: Variational Inference (Bayes by Backprop) for regression with predictive uncertainty.notebooks/MC_Dropout_Tutorial.ipynb: MC Dropout tutorial on a nonlinear beam-style regression case.notebooks/laplace/Laplace_Tutorial.ipynb: Core Laplace workflow around a MAP model.notebooks/laplace/Laplace_FullHessian_Tutorial.ipynb: Full-Hessian Laplace example.notebooks/laplace/Laplace_HessianComparison_Tutorial.ipynb: Side-by-side comparison of all Hessian structures (diag,fisher_diag,lowrank_diag,block_diag,kron,full) using shared MAP weights and common metrics (RMSE, NLL, coverage, interval width, ID/OOD uncertainty ratio).notebooks/SGLD_Tutorial.ipynb: MCMC posterior sampling with SGLD.notebooks/GaussianProcess_Tutorial.ipynb: Exact Gaussian Process regression.notebooks/SparseGaussianProcess_Tutorial.ipynb: Sparse variational GP with inducing points.
Gaussian Processes
The module deepuq.models.gaussian_process provides lightweight GP utilities
implemented entirely in PyTorch so everything can run on CPU or GPU.
Exact GP
GaussianProcessRegressor implements closed-form inference with an RBF kernel.
The API mirrors scikit-learn while keeping tensors on the chosen device.
import torch
from deepuq.models import GaussianProcessRegressor, RBFKernel
# Training data
x = torch.linspace(-1.0, 1.0, 40).unsqueeze(-1)
y = torch.sin(2 * torch.pi * x) + 0.05 * torch.randn_like(x)
# Model setup
kernel = RBFKernel(lengthscale=0.5, outputscale=1.0)
gp = GaussianProcessRegressor(kernel=kernel, noise=0.02)
gp.fit(x, y)
# Posterior predictions
x_star = torch.linspace(-1.5, 1.5, 200).unsqueeze(-1)
mean, var = gp.predict(x_star)
samples = gp.posterior_samples(x_star, n_samples=5)
Sparse Variational GP
SparseGaussianProcessRegressor follows the variational inducing-point
approach of Titsias (2009), optimising kernel hyperparameters and inducing
locations with Adam for scalability.
import torch
from deepuq.models import SparseGaussianProcessRegressor
x = torch.linspace(-2.0, 2.0, 500).unsqueeze(-1)
y = torch.sin(2 * torch.pi * x) + 0.1 * torch.randn_like(x)
sparse_gp = SparseGaussianProcessRegressor(num_inducing=40, num_iterations=800)
sparse_gp.fit(x, y)
mean, var = sparse_gp.predict(x[:50])
Explore both flavours in the notebooks
notebooks/GaussianProcess_Tutorial.ipynb (exact GP) and
notebooks/SparseGaussianProcess_Tutorial.ipynb (sparse GP), each of which
visualises posterior means, credible intervals, and posterior samples on toy
datasets.
Documentation
- API docs are in each module and the README sections below.
- Run
pydoc deepuq.methods.vietc., or open the examples.
Benchmarks
Multi-dataset benchmark scripts are under benchmarks/.
python benchmarks/run_benchmarks.py --preset quick
Outputs:
benchmarks/results/results.csvbenchmarks/results/summary.md
Data Policy
- Tracked tutorial datasets remain under
data/andnotebooks/data/. - Provenance and usage notes are documented in:
data/README.mdnotebooks/data/README.md
Contributing
PRs welcome. Please add tests under tests/ and run pytest.
License
MIT
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uqdeepnn-0.1.5.tar.gz.
File metadata
- Download URL: uqdeepnn-0.1.5.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4535fe17e0f486d2120df7fdd23e0f1c753b21f38454ec426eb463792ee489f
|
|
| MD5 |
7dd0e34a35dc42a2a30ef61913bff3aa
|
|
| BLAKE2b-256 |
2633d25d87fcad02e2c04e5f52e671301372a05a28c791c2f0965021f5816e32
|
Provenance
The following attestation bundles were made for uqdeepnn-0.1.5.tar.gz:
Publisher:
release.yml on Vispikarkaria/Deep-UQ
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
uqdeepnn-0.1.5.tar.gz -
Subject digest:
b4535fe17e0f486d2120df7fdd23e0f1c753b21f38454ec426eb463792ee489f - Sigstore transparency entry: 1034446660
- Sigstore integration time:
-
Permalink:
Vispikarkaria/Deep-UQ@8521fc18b52a7491022be0f38d762252cd363978 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/Vispikarkaria
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8521fc18b52a7491022be0f38d762252cd363978 -
Trigger Event:
push
-
Statement type:
File details
Details for the file uqdeepnn-0.1.5-py3-none-any.whl.
File metadata
- Download URL: uqdeepnn-0.1.5-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a2ae63099257b176ced68563c495c81b2bff20bef7a07c4bb00c84068b5b591
|
|
| MD5 |
2f3dd2ff942b9c3d780fde377045abb9
|
|
| BLAKE2b-256 |
a9f697f8a3c9d60b2cb2ad2714552f20a59709a40e539ba06fe490a4f80e5e3b
|
Provenance
The following attestation bundles were made for uqdeepnn-0.1.5-py3-none-any.whl:
Publisher:
release.yml on Vispikarkaria/Deep-UQ
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
uqdeepnn-0.1.5-py3-none-any.whl -
Subject digest:
8a2ae63099257b176ced68563c495c81b2bff20bef7a07c4bb00c84068b5b591 - Sigstore transparency entry: 1034446705
- Sigstore integration time:
-
Permalink:
Vispikarkaria/Deep-UQ@8521fc18b52a7491022be0f38d762252cd363978 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/Vispikarkaria
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8521fc18b52a7491022be0f38d762252cd363978 -
Trigger Event:
push
-
Statement type: