Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

CUQIpy logo

Computational Uncertainty Quantification for Inverse Problems in python

pytest docs PyPI

CUQIpy stands for Computational Uncertainty Quantification for Inverse Problems in python. It's a robust Python package designed for modeling and solving inverse problems using Bayesian inference. Here's what it brings to the table:

  • A straightforward high-level interface for UQ analysis.
  • Complete control over the models and methods.
  • An array of predefined distributions, samplers, models, and test problems.
  • Easy extendability for your unique needs.

CUQIpy is part of the CUQI project supported by the Villum Foundation.

📚 Resources

🚀 Quickstart

Install CUQIpy using pip:

pip install cuqipy

For more detailed instructions, see the Getting Started guide.

🧪 Quick Example - UQ in a few lines of code

Experience the simplicity and power of CUQIpy with this Image deconvolution example. Getting started with UQ takes just a few lines of code:

# Imports
import matplotlib.pyplot as plt
from cuqi.testproblem import Deconvolution2D
from cuqi.distribution import Gaussian, LMRF, Gamma
from cuqi.problem import BayesianProblem

# Step 1: Set up forward model and data, y = Ax
A, y_data, info = Deconvolution2D(dim=256, phantom="cookie").get_components()

# Step 2: Define distributions for parameters
d = Gamma(1, 1e-4)
s = Gamma(1, 1e-4)
x = LMRF(0, lambda d: 1/d, geometry=A.domain_geometry)
y = Gaussian(A@x, lambda s: 1/s)

# Step 3: Combine into Bayesian Problem and sample posterior
BP = BayesianProblem(y, x, d, s)
BP.set_data(y=y_data)
samples = BP.sample_posterior(200)

# Step 4: Analyze results
info.exactSolution.plot(); plt.title("Sharp image (exact solution)")
y_data.plot(); plt.title("Blurred and noisy image (data)")
samples["x"].plot_mean(); plt.title("Estimated image (posterior mean)")
samples["x"].plot_std(); plt.title("Uncertainty (posterior standard deviation)")
samples["s"].plot_trace(); plt.suptitle("Noise level (posterior trace)")
samples["d"].plot_trace(); plt.suptitle("Regularization parameter (posterior trace)")

Sharp image (exact solution) Blurred and noisy image (data) Estimated image (posterior mean) Uncertainty (posterior standard deviation) Noise level (posterior trace) Regularization parameter (posterior trace)

🔌 Plugins

CUQIpy can be extended with additional functionality by installing optional plugins. We currently offer the following plugins:

  • CUQIpy-CIL A plugin for the Core Imaging Library (CIL) providing access to forward models for X-ray computed tomography.

  • CUQIpy-FEniCS: A plugin providing access to the finite element modelling tool FEniCS, which is used for solving PDE-based inverse problems.

  • CUQIpy-PyTorch: A plugin providing access to the automatic differentiation framework of PyTorch within CUQIpy. It allows gradient-based sampling methods without manually providing derivative information of distributions and forward models.

💻 Maintainers

🌟 Community contributors

A big shoutout to the community members who have contributed to CUQIpy! Their contributions are much appreciated.

📖 How to cite CUQIpy

To find the official CUQIpy papers to cite and a list of papers that use CUQIpy, please check here.

🤝 Contributing

We welcome contributions to CUQIpy. Please see our contributing guidelines for more information.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cuqipy-1.5.1.post0.dev29.tar.gz (2.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cuqipy-1.5.1.post0.dev29-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file cuqipy-1.5.1.post0.dev29.tar.gz.

File metadata

  • Download URL: cuqipy-1.5.1.post0.dev29.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cuqipy-1.5.1.post0.dev29.tar.gz
Algorithm Hash digest
SHA256 0a2811669fe35c776b4c32504e97052110f2862f1afc99c0b5d9ff52c16fd610
MD5 c41bec9203bbfdf91cba92013fd0639b
BLAKE2b-256 5ac74ee5c42b6542ec9d06b8d35e2006b8af74ce332c0c6014e84e8192d7d937

See more details on using hashes here.

File details

Details for the file cuqipy-1.5.1.post0.dev29-py3-none-any.whl.

File metadata

File hashes

Hashes for cuqipy-1.5.1.post0.dev29-py3-none-any.whl
Algorithm Hash digest
SHA256 b44538a2f79a5df2cb7328deba96124d9521aa490ad81f9ee8a2db7c44561dca
MD5 159a1a2ff9f24449e1c2667f02e371d9
BLAKE2b-256 024805e2b0f85412fee0d32bada4f6c1c12232b094e7dfb787d54946938d2bd4

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.5.1.post0.dev29 This release

2 files

1.5.1

2 files

1.5.0

2 files

1.4.1

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page