Perform complex profile binned maximum likelihood fits by exploiting state-of-the-art differential programming. Computations are based on the tensorflow 2 library and scipy minimizers with multithreading support on CPU (FIXME: and GPU). Implemented approximations in the limit of large sample size to simplify intensive computations.
You can install rabbit via pip. It can be installed with the core functionality:
pip install rabbit-fitOr with optional dependencies to use the plotting scripts
pip install rabbit-fit[plotting]If you want to have more control or want to develop rabbit you can check it our as (sub) module.
MY_GIT_USER=$(git config user.github)
git clone git@github.com:$MY_GIT_USER/rabbit.git
cd rabbit/
git remote add upstream git@github.com:WMass/rabbit.gitGet updates from the central repository (and main branch)
git pull upstream main
git push origin mainIt can be run within a comprehensive singularity (recommended) or in an environment set up by yourself. It makes use of the wums package for storing hdf5 files in compressed format.
The simplest is to make a python virtual environment. It depends on the python version you are working with (tested with 3.9.18).
First, make a python version, e.g. in the rabbit base directory (On some machines you have to use python3):
python -m venv envThe activate it and install the necessary packages
source env/bin/activate
pip install wums[pickling,plotting] tensorflow tensorflow-probability numpy h5py hist scipy matplotlib mplhep seaborn pandas plotly kaleidoThe packages matplotlib, mplhep, seaborn, pandas, plotly, and kaleido are only needed for the plotting scripts.
For the text2hdf5.py conversion also the uproot package is needed.
In case you want to contribute to the development, please also install the linters isort, flake8, autoflake, black, and pylint used in the pre-commit hooks and the github CI
Deactivate the environment with deactivate.
The singularity includes a comprehensive set of packages.
But the singularity is missing the wums package, you have to check it our as a submodule.
It also comes with custom optimized builds that for example enable numpy and scipy to be run with more than 64 threads (the limit in the standard build).
Activate the singularity image (to be done every time before running code).
singularity run /cvmfs/unpacked.cern.ch/gitlab-registry.cern.ch/bendavid/cmswmassdocker/wmassdevrolling\:latestSetting up environment variables and python path (to be done every time before running code).
source setup.shAn example can be found in tests/make_tensor.py -o test_tensor.hdf5.
Systematic uncertainties are implemented by default using a log-normal probability density (with a multiplicative effect on the event yield). Gaussian uncertainties with an additive effect on the event yield can also be used. This is configured through the systematic_type parameter of the TensorWriter.
By setting sparse=True in the TensorWriter constructor the tensor is stored in the sparse representation.
This is useful when working with a sparse tensor, e.g. having many bins/processes/systematics where each bin/process/systematic only contributes to a small number of bins/processes/systematics.
This is often the case in the standard profile likelihood unfolding.
By default, systematic variations are asymmetric. However, defining only symmetric variations can be beneficial as a fully symmetric tensor has reduced memory consumption, simplifications in the likelihood function in the fit, and is usually numerically more stable. Different symmetrization options are supported:
- "average": TBD
- "conservative": TBD
- "linear": TBD
- "quadratic": TBD If a systematic variation is added by providing a single histogram, the variation is mirrored.
Masked channels can be added that don't contribute to the likelihood but are evaluated as any other channel.
This is done by defining masked=True in the tensorwriter add_channel function.
(Pseudo) Data histograms for masked channels are not supported.
This is useful for example to compute unfolded (differential) cross sections and their uncertainties, including global impacts, taking into account all nuisance parameters that affect these channels.
The input tensor can also be generated from the input used for the Combine tool using the text2hdf5.py command.
This script is mainly intented for user that have these inputs already and want's to perform some cross checks.
Only basic functionality is supported and for complex models the conversion can take long, it is thus recommended to directly produce the input tensor using the provided interface as explained above.
Scripts for diagnosing the input tensor are available: Running some checks for empty bins etc.
debug_inputdata.py test_tensor.hdf5Plotting the histograms that are actually used in the fit, supporting adding of systematic variations in the plot:
rabbit_plot_inputdata.py test_tensor.hdf5 -o results/fitresult.hdf5For example:
rabbit_fit test_tensor.hdf5 -o results/fitresult.hdf5 -t 0 --doImpacts --globalImpacts --saveHists --computeHistErrorsBin-by-bin statistical uncertainties on the templates are added by default and can be disabled at runtime using the --noBinByBinStat option. The Barlow-Beeston lite method is used to add implicit nuisance parameters for each template bin. By default this is implemented using a gamma distribution for the probability density, but Gaussian uncertainties can also be used with --binByBinStatType normal.
Perform mappings on the parameters and observables (the histogram bins in the (masked) channels).
Baseline mappings are defined in rabbit/mappings/ and can be called in rabbit_fit with the --mapping or -m option e.g. -m Select ch0 -m Project ch1 b.
The first argument is the mapping name followed by arguments passed into the mapping.
Available mappings are:
BaseMapping: Compute histograms in all bins and all channels.Select: To select histograms of a channel, and perform a selection of processes and bins, supporting rebinning.Project: To project histograms to lower dimensions, respecting the covariance matrix across bins.Normalize: To normalize histograms to their sum (and project them) e.g. to compute normalized differential cross sections.Ratio: To compute the ratio between channels, processes, or histogram bins.Normratio: To compute the ratio of normalized histograms.
Mapping can be specified in the comand line and can feature different parsing syntax.
A convension is set up for parsing process and axes selections (e.g. in the Select and Ratio models). For selecting processes a comma separated list, e.g. <process_0>,<process_1>...
and for axes selecitons <axis_name_0>:<selection_0>,<axis_name_1>:<selection_1>,... i.e. a comma separated list of axis names and selections separated by ":".
Selections can be
- integers for bin indices,
slice()objects e.g.slice(0j,2,2)wherejcan be used to index by complex number, meaing indexing the bin by its axis value,sumto sum all bins of an axis,rebin()to rebin an axis with new edges,None:Nonefor whchNoneis returned, indicating no selection Multiple selection per axis can be specified, e.g.x:slice(2,8),x:sum.
Custom mappings can be defined.
They can be specified with the full path to the custom mapping e.g. -m custom_mapping.MyCustomMapping.
The path must be accessable from your $PYTHONPATH variable and an __ini__.py file must be in the directory.
POI models can be used to introduce paramter of interests (POIs) and modify the number of predicted events in the fit.
Baseline models are defined in rabbit/poi_models/ and can be called in rabbit_fit with the --poiModel option, e.g. --poiModel Mu.
Only one POI model at a time can be used at a time.
Available POI models are:
Mu: Scale the number of events for each signal process with an unconstrained parameter, and background proesses with 1. This is the default modelOnes: Return ones, i.e. leave the number of predicted events the same.Mixture: Scale theprimaryprocesses byxand thecomplementaryprocesses by1-x
Custom POI models can be defined.
They can be specified with the full path to the custom mapping e.g. --poiModel custom_model.MyCustomModel.
The path must be accessable from your $PYTHONPATH variable and an __ini__.py file must be in the directory.
Parameter values and their uncertainties:
rabbit_print_pulls_and_constraints.py results/fitresult.hdf5Uncertainty breakdown for parameter of interest, sometimes referred to nuisance parameter impacts:
rabbit_print_impacts results/fitresult.hdf5We use pre-commit hooks and linters in the CI. Activate git pre-commit hooks (only need to do this once when checking out)
git config --local include.path ../.gitconfig
I case rabbit is included as a submodule, use instead:
git config --local include.path "$(git rev-parse --show-superproject-working-tree)/.gitconfig"
