(partial) pure python histfactory implementation
Project description
pure-python fitting/limit-setting/interval estimation HistFactory-style
The HistFactory p.d.f. template [CERN-OPEN-2012-016] is per-se independent of its implementation in ROOT and sometimes, it's useful to be able to run statistical analysis outside of ROOT, RooFit, RooStats framework.
This repo is a pure-python implementation of that statistical model for multi-bin histogram-based analysis and its interval estimation is based on the asymptotic formulas of "Asymptotic formulae for likelihood-based tests of new physics" [arxiv:1007.1727]. The aim is also to support modern computational graph libraries such as PyTorch and TensorFlow in order to make use of features such as autodifferentiation and GPU acceleration.
Hello World
>>> import pyhf
>>> pdf = pyhf.simplemodels.hepdata_like(signal_data=[12.0, 11.0], bkg_data=[50.0, 52.0], bkg_uncerts=[3.0, 7.0])
>>> CLs_obs, CLs_exp = pyhf.utils.hypotest(1.0, [51, 48] + pdf.config.auxdata, pdf, return_expected=True)
>>> print('Observed: {}, Expected: {}'.format(CLs_obs, CLs_exp))
Observed: [0.05290116], Expected: [0.06445521]
What does it support
Implemented variations:
- HistoSys
- OverallSys
- ShapeSys
- NormFactor
- Multiple Channels
- Import from XML + ROOT via uproot
- ShapeFactor
- StatError
- Lumi Uncertainty
Computational Backends:
- NumPy
- PyTorch
- TensorFlow
- MXNet
Available Optimizers
NumPy | Tensorflow | PyTorch | MxNet |
---|---|---|---|
SLSQP (scipy.optimize ) |
Newton's Method (autodiff) | Newton's Method (autodiff) | N/A |
MINUIT (iminuit ) |
. | . | . |
Todo
- StatConfig
- Non-asymptotic calculators
results obtained from this package are validated against output computed from HistFactory workspaces
A one bin example
nobs = 55, b = 50, db = 7, nom_sig = 10.
A two bin example
bin 1: nobs = 100, b = 100, db = 15., nom_sig = 30.
bin 2: nobs = 145, b = 150, db = 20., nom_sig = 45.
Installation
To install pyhf
from PyPI with the NumPy backend run
pip install pyhf
and to install pyhf
with additional backends run
pip install pyhf[tensorflow,torch,mxnet]
or a subset of the options.
To uninstall run
pip uninstall pyhf
Authors
Please check the contribution statistics for a list of contributors
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
File details
Details for the file pyhf-0.0.17.tar.gz
.
File metadata
- Download URL: pyhf-0.0.17.tar.gz
- Upload date:
- Size: 6.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.9.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90c76eef14f1f1586b1b131caab756af2f992e309a7bbee7772146aeb309fa50 |
|
MD5 | ee3ab6f9fcfe31b4185450b9eaaee330 |
|
BLAKE2b-256 | fd3155cfde79936980ef4acb0832d7fe31dc041e8b3111417cd75f764fabec12 |
File details
Details for the file pyhf-0.0.17-py2.py3-none-any.whl
.
File metadata
- Download URL: pyhf-0.0.17-py2.py3-none-any.whl
- Upload date:
- Size: 92.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e65506d7365d053cd696a9dcd46df64e3876bdb7a8a3609c1e3dd3ce9f2730f |
|
MD5 | 7288003ac62511741b64bedcfd8a2927 |
|
BLAKE2b-256 | 3da14b89172fd22451f46a8228f02c196d8d4b5851cc66cf6bbe120ca50f4261 |