Produce simplified likelihoods of different formats
Project description
simplify
A package that creates simplified likelihoods from full likelihoods. Currently, only one form of simplified likelihoods is implemented, but the idea is to implement additional versions of the simplified likelihoods, such that varying degrees of simplification can be supported.
Installation
Follow good practice and start by creating a virtual environment
python3 -m venv simplify
and then activating it
source simplify/bin/activate
Default install
Install the package with pip
python3 -m pip install simplify[contrib]
Development install
If you want to contribute to simplify
, install the development version of the package. Fork the repository, clone the fork, and then install
python3 -m pip install --ignore-installed -U -e .[complete]
Next, setup the git pre-commit hook for Black
pre-commit install
You can run all the tests with
python3 -m pytest
How to run
CLI
Run with e.g.
simplify convert < fullLH.json > simplifiedLH.json
or e.g.
curl http://foo/likelihood.json | simplify convert
where fullLH.json
is the full likelihood you want to convert into a simplified likelihood. Simplify is able to read/write from/to stdin/stdout.
In python script
You can also use simplify
in a python script, e.g. to create some validation and cross-check plots and tables.
import pyhf
import json
import simplify
pyhf.set_backend(pyhf.tensorlib, "minuit")
spec = json.load(open("likelihood.json", "r"))
ws = pyhf.Workspace(spec) # ws from full LH
# get model and data for each ws we just created
model = ws.model(modifier_settings = {"normsys": {"interpcode": "code4"},"histosys": {"interpcode": "code4p"},})
data = ws.data(model)
# run fit
fit_result = simplify.fitter.fit(ws)
plt = simplify.plot.pulls(
fit_result,
"plots/"
)
plt = simplify.plot.correlation_matrix(
fit_result,
"plots/",
pruning_threshold=0.1
)
tables = simplify.plot.yieldsTable(
ws,
"plots/",
fit_result,
)
Dependencies
Naturally relies heavily on pyhf
. Part of the code for plotting and validating results is inspired by Alexander Held's cabinetry
.
Project details
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 simplify-0.1.8.tar.gz
.
File metadata
- Download URL: simplify-0.1.8.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a97150db4bc661049f47667fe8b9be318bb2078d10a9236cc53b2f46337373b |
|
MD5 | 36fbbf45ed26b1c4918418fd391a0cb2 |
|
BLAKE2b-256 | 154cfc415ee5e4825d044d2df89084a05c504f89bedd29c93e02f27ff9c93bb5 |
File details
Details for the file simplify-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: simplify-0.1.8-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f6ade93849c069eca018f9b4469287552575ee08fa44cfd2fa7301b8d9210b3 |
|
MD5 | 1c0440a4d47e55e04531ce15fd1bfd58 |
|
BLAKE2b-256 | 8eab2c58db833fdc69ce493b19217f44fd32fa3d24e4c7bef1fc8d36dced9ca6 |