https://github.com/astro-informatics/proxnest
Proximal Nested Sampling for high-dimensional Bayesian model selection
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.4%) to scientific vocabulary
Keywords
bayesian
model-selection
nested-sampling
proximal-algorithms
Last synced: 6 months ago
·
JSON representation
Repository
Proximal Nested Sampling for high-dimensional Bayesian model selection
Basic Info
- Host: GitHub
- Owner: astro-informatics
- License: gpl-3.0
- Language: Jupyter Notebook
- Default Branch: main
- Homepage: https://astro-informatics.github.io/proxnest/
- Size: 15.9 MB
Statistics
- Stars: 25
- Watchers: 9
- Forks: 4
- Open Issues: 2
- Releases: 1
Topics
bayesian
model-selection
nested-sampling
proximal-algorithms
Created almost 4 years ago
· Last pushed almost 2 years ago
Metadata Files
Readme
License
README.rst
.. |github| image:: https://img.shields.io/badge/GitHub-ProxNest-brightgreen.svg?style=flat
:target: https://github.com/astro-informatics/proxnest
.. |tests| image:: https://github.com/astro-informatics/proxnest/actions/workflows/tests.yml/badge.svg?branch=main
:target: https://github.com/astro-informatics/proxnest/actions/workflows/tests.yml
.. |docs| image:: https://github.com/astro-informatics/proxnest/actions/workflows/docs.yml/badge.svg
:target: https://astro-informatics.github.io/proxnest
.. |codecov| image:: https://codecov.io/gh/astro-informatics/proxnest/branch/main/graph/badge.svg?token=oGowwdoMRN
:target: https://codecov.io/gh/astro-informatics/proxnest
.. |pypi| image:: https://badge.fury.io/py/ProxNest.svg
:target: https://badge.fury.io/py/ProxNest
.. |licence| image:: https://img.shields.io/badge/License-GPL-blue.svg
:target: http://perso.crans.org/besson/LICENSE.html
.. |arxiv| image:: http://img.shields.io/badge/arXiv-2106.03646-orange.svg?style=flat
:target: https://arxiv.org/abs/2106.03646
|github| |tests| |docs| |codecov| |pypi| |licence| |arxiv|
|logo| Proximal nested sampling for high-dimensional Bayesian model selection
=================================================================================================================
.. |logo| raw:: html
``ProxNest`` is an open source, well tested and documented Python implementation of the *proximal nested sampling* framework (`Cai et al. 2022 `_) to compute the Bayesian model evidence or marginal likelihood in high-dimensional log-convex settings. Furthermore, non-smooth sparsity-promoting priors are also supported.
This is achieved by exploiting tools from proximal calculus and Moreau-Yosida regularisation (`Moreau 1962 `_) to efficiently sample from the prior subject to the hard likelihood constraint. The resulting Markov chain iterations include a gradient step, approximating (with arbitrary precision) an overdamped Langevin SDE that can scale to very high-dimensional applications.
Basic Usage
===========
The following is a straightforward example application to image denoising (Phi = I), regularised with Daubechies wavelets (DB6).
.. code-block:: Python
# Import relevant modules.
import numpy as np
import ProxNest
# Load your data and set parameters.
data = np.load()
params = params # Parameters of the prior resampling optimisation problem.
options = options # Options associated with the sampling strategy.
# Construct your forward model (phi) and wavelet operators (psi).
phi = ProxNest.operators.sensing_operators.Identity()
psi = ProxNest.operators.wavelet_operators.db_wavelets(["db6"], 2, (dim, dim))
# Define proximal operators for both your likelihood and prior.
proxH = lambda x, T : ProxNest.operators.proximal_operators.l1_projection(x, T, delta, Psi=psi)
proxB = lambda x, tau: ProxNest.optimisations.l2_ball_proj.sopt_fast_proj_B2(x, tau, params)
# Write a lambda function to evaluate your likelihood term (here a Gaussian)
LogLikeliL = lambda sol : - np.linalg.norm(y-phi.dir_op(sol), 'fro')**2/(2*sigma**2)
# Perform proximal nested sampling
BayEvi, XTrace = ProxNest.sampling.proximal_nested.ProxNestedSampling(
np.abs(phi.adj_op(data)), LogLikeliL, proxH, proxB, params, options
)
At this point you have recovered the tuple **BayEvi** and dict **Xtrace** which contain
.. code-block:: python
Live = options["samplesL"] # Number of live samples
Disc = options["samplesD"] # Number of discarded samples
# BayEvi is a tuple containing two values:
BayEvi[0] = 'Estimate of Bayesian evidence (float).'
BayEvi[1] = 'Variance of Bayesian evidence estimate (float).'
# XTrace is a dictionary containing the np.ndarrays:
XTrace['Liveset'] = 'Set of live samples (shape: Live, dim, dim).'
XTrace['LivesetL'] = 'Likelihood of live samples (shape: Live).'
XTrace['Discard'] = 'Set of discarded samples (shape: Disc, dim, dim).'
XTrace['DiscardL'] = 'Likelihood of discarded samples (shape: Disc).'
XTrace['DiscardW'] = 'Weights of discarded samples (shape: Disc).'
XTrace['DiscardPostProb'] = 'Posterior probability of discarded samples (shape: Disc)'
XTrace['DiscardPostMean'] = 'Posterior mean solution (shape: dim, dim)'
from which one can perform *e.g.* Bayesian model comparison.
Installation
============
Brief installation instructions are given below (for further details see the full installation documentation).
Quick install (PyPi)
--------------------
The ``ProxNest`` package can be installed by running
.. code-block:: bash
pip install ProxNest
Install from source (GitHub)
----------------------------
The ``ProxNest`` package can also be installed from source by running
.. code-block:: bash
git clone https://github.com/astro-informatics/proxnest
cd harmonic
and running the install script, within the root directory, with one command
.. code-block:: bash
bash build_proxnest.sh
To check the install has worked correctly run the unit tests with
.. code-block:: bash
pytest --black ProxNest/tests/
Contributors
============
`Matthew Price `_, `Xiaohao Cai `_, `Jason McEwen `_, `Marcelo Pereyra `_, and contributors.
Attribution
===========
A BibTeX entry for ``ProxNest`` is:
.. code-block::
@article{Cai:ProxNest:2021,
author = {Cai, Xiaohao and McEwen, Jason~D. and Pereyra, Marcelo},
title = {"High-dimensional Bayesian model selection by proximal nested sampling"},
journal = {ArXiv},
eprint = {arXiv:2106.03646},
year = {2021}
}
License
=======
``ProxNest`` is released under the GPL-3 license (see `LICENSE.txt `_), subject to
the non-commercial use condition (see `LICENSE_EXT.txt `_)
.. code-block::
ProxNest
Copyright (C) 2022 Matthew Price, Xiaohao Cai, Jason McEwen, Marcelo Pereyra & contributors
This program is released under the GPL-3 license (see LICENSE.txt),
subject to a non-commercial use condition (see LICENSE_EXT.txt).
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Owner
- Name: AstroInfo Team @ UCL
- Login: astro-informatics
- Kind: organization
- Location: United Kingdom
- Website: http://www.jasonmcewen.org/
- Repositories: 29
- Profile: https://github.com/astro-informatics
GitHub Events
Total
- Watch event: 4
Last Year
- Watch event: 4
Packages
- Total packages: 1
-
Total downloads:
- pypi 12 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 2
pypi.org: proxnest
Proximal nested sampling for high-dimensional Bayesian model selection
- Homepage: https://github.com/astro-informatics/proxnest
- Documentation: https://proxnest.readthedocs.io/
- License: GNU General Public License v3 (GPLv3)
-
Latest release: 0.0.7
published over 3 years ago
Rankings
Dependent packages count: 6.6%
Forks count: 19.6%
Stargazers count: 21.8%
Average: 27.9%
Dependent repos count: 30.6%
Downloads: 61.0%
Maintainers (2)
Last synced:
6 months ago
Dependencies
requirements/requirements-core.txt
pypi
- PyWavelets *
- colorlog *
- numpy *
- pyyaml *
- tqdm *
requirements/requirements-docs.txt
pypi
- nbsphinx-link ==1.3.0
- sphinx ==4.2.0
- sphinx-git ==11.0.0
- sphinx-rtd-dark-mode ==1.2.4
- sphinx-rtd-theme ==1.0.0
- sphinx-tabs ==3.2.0
- sphinx_toolbox ==2.15.0
- sphinxcontrib-bibtex ==2.4.1
- sphinxcontrib-texfigure ==0.1.3
requirements/requirements-notebooks.txt
pypi
- matplotlib *
- scikit-image *
requirements/requirements-tests.txt
pypi
- black * test
- codecov * test
- ipython ==7.16.1 test
- jupyter ==1.0.0 test
- pytest * test
- pytest-black * test
- pytest-cov * test
.github/workflows/docs.yml
actions
- JamesIves/github-pages-deploy-action 4.1.5 composite
- actions/checkout v2.3.1 composite
- actions/setup-python v2 composite
.github/workflows/tests.yml
actions
- actions/checkout v2.3.1 composite
- actions/setup-python v2 composite
setup.py
pypi