LUMIN is a deep-learning and data-analysis ecosystem for High-Energy Physics. Similar to Keras and fastai it is a wrapper framework for a graph computation library (PyTorch), but includes many useful functions to handle domain-specific requirements and problems. It also intends to provide easy access to state-of-the-art methods, but still be flexible enough for users to inherit from base classes and override methods to meet their own demands.
Online documentation may be found at https://lumin.readthedocs.io/en/stable
For an introduction and motivation for LUMIN, checkout this talk from IML-2019 at CERN: video, slides. And for a live tutorial, checkout my talk at PyHEP 2021: https://www.youtube.com/watch?v=keDWQKHCa2o (tutorial repo here: https://github.com/GilesStrong/talk_pyhep21_lumin)
FoldYielder
class provides on-demand access to data stored in HDF5 format, only loading into memory what is required.FoldYielder
provides conversion methods to Pandas DataFrame
for use with other internal methods and external packagesDataFrame
allowing their use without having to convert to FoldYielder
.ModelBuilder
takes parameters and modules to yield networks on-demandfold_train_ensemble
, trains a specified number of models as well as just a single modelEnsemble
class handles the (metric-weighted) construction of an ensemble, its inference, saving and loading, and interpretationEvalMetric
classPlotSettings
class - class accepted by every plot function providing control of plot appearance, titles, colour schemes, et ceteraSeveral examples are present in the form of Jupyter Notebooks in the examples
folder. These can be run also on Google Colab to allow you to quickly try out the package.
examples/Simple_Binary_Classification_of_earnings.ipynb
: Very basic binary-classification exampleexamples/Binary_Classification_Signal_versus_Background.ipynb
: Binary-classification example in a high-energy physics contextexamples/Multiclass_Classification_Signal_versus_Backgrounds.ipynb
: Multiclass-classification example in a high-energy physics contextexamples/Single_Target_Regression_Di-Higgs_mass_prediction.ipynb
: Single-target regression example in a high-energy physics contextexamples/Multi_Target_Regression_Di-tau_momenta.ipynb
: Multi-target regression example in a high-energy physics contextexamples/Feature_Selection.ipynb
: In-depth walkthrough for automated feature-selectionexamples/Advanced_Model_Building.ipynb
: In-depth look at building more complicated models and a few advanced interpretation techniquesexamples/Model_Exporting.ipynb
: Walkthough for exporting a trained model to ONNX and TensorFlowexamples/RNNs_CNNs_and_GNNs_for_matrix_data.ipynb
: Various examples of applying RNNs, CNNs, and GNNs to matrix data (top-tagging on jet constituents)examples/Learning_To_Pivot.ipynb
: Example of adversarial training for parameter invarianceThe main package can be installed via:
pip install lumin
Full functionality requires an additional package as described below.
Check out the repo locally:
git clone git@github.com:GilesStrong/lumin.git
cd lumin
For development usage, we use poetry
to handle dependency installation.
Poetry can be installed via, e.g.
curl -sSL https://install.python-poetry.org | python3 -
poetry self update
and ensuring that poetry
is available in your $PATH
Lumin requires python >= 3.10
. This can be installed via e.g. pyenv
:
curl https://pyenv.run | bash
pyenv update
pyenv install 3.10
pyenv local 3.10
Install the dependencies:
poetry install
poetry self add poetry-plugin-export
poetry config warnings.export false
poetry run pre-commit install
pip install sparse
pip install pdpbox
pdpbox
includes docs dependencies in its build environment, which can result in conflicts. A fork of pdpbox
which removes these dependencies can be installed from [https://github.com/GilesStrong/PDPbox]TMVA contained in CERN's ROOT system, has been the default choice for BDT training for analysis and reconstruction algorithms due to never having to leave ROOT format. With the gradual move to DNN approaches, more scientists are looking to move their data out of ROOT to use the wider selection of tools which are available. Keras appears to be the first stop due to its ease of use, however implementing recent methods in Keras can be difficult, and sometimes requires dropping back to the tensor library that it aims to abstract. Indeed, the prequel to LUMIN was a similar wrapper for Keras (HEPML_Tools) which involved some pretty ugly hacks. The fastai framework provides access to these recent methods, however doesn't yet support sample weights to the extent that HEP requires. LUMIN aims to provide the best of both, Keras-style sample weighting and fastai training methods, while focussing on columnar data and providing domain-specific metrics, plotting, and statistical treatment of results and uncertainties.
LUMIN is primarily designed for use on columnar data, and from version 0.5 onwards this also includes matrix data; ordered series and un-ordered groups of objects. With some extra work it can be used on other data formats, but at the moment it has nothing special to offer. Whilst recent work in HEP has made use of jet images and GANs, these normally hijack existing ideas and models. Perhaps once we get established, domain specific approaches which necessitate the use of a specialised framework, then LUMIN could grow to meet those demands, but for now I'd recommend checking out the fastai library, especially for image data.
With just one main developer, I'm simply focussing on the data types and applications I need for my own research and common use cases in HEP. If, however you would like to use LUMIN's other methods for your own work on other data formats, then you are most welcome to contribute and help to grow LUMIN to better meet the needs of the scientific community.
The current priority is to improve the documentation, add unit tests, and expand the examples.
The next step will be to try to increase the user base and number of contributors. I'm aiming to achieve this through presentations, tutorials, blog posts, and papers.
Further improvements will be in the direction of implementing new methods and (HEP-specific) architectures, as well as providing helper functions and data exporters to statistical analysis packages like Combine and PYHF.
Contributions, suggestions, and feedback are most welcome! The issue tracker on this repo is probably the best place to report bugs et cetera.
Nope, the majority of the code-base does not conform to PEP8. PEP8 has its uses, but my understanding is that it primarily written for developers and maintainers of software whose users never need to read the source code. As a maths-heavy research framework which users are expected to interact with, PEP8 isn't the best style. Instead, I'm aiming to follow more the style of fastai, which emphasises, in particular, reducing vertical space (useful for reading source code in a notebook) naming and abbreviating variables according to their importance and lifetime (easier to recognise which variables have a larger scope and permits easier writing of mathematical operations). A full list of the abbreviations used may be found in abbr.md
Aside from being a recursive acronym (and therefore the best kind of acronym) lumin is short for 'luminosity'. In high-energy physics, the integrated luminosity of the data collected by an experiment is the main driver in the results that analyses obtain. With the paradigm shift towards multivariate analyses, however, improved methods can be seen as providing 'artificial luminosity'; e.g. the gain offered by some DNN could be measured in terms of the amount of extra data that would have to be collected to achieve the same result with a more traditional analysis. Luminosity can also be connected to the fact that LUMIN is built a LUMIN is primarily developed by Giles Strong; a British-born doctor in particle physics, researcher at INFN-Padova (Italy), and a member of the CMS collaboration at CERN, and a founding member of the MODE Collaboration (differentiable optimisation for detector design).
As LUMIN has grown, it has welcomed contributions from members of the scientific and software development community. Check out the contributors page for a complete list.
Certainly more developers and contributors are welcome to join and help out!
If you have used LUMIN in your analysis work and wish to cite it, the preferred reference is: Giles C. Strong, LUMIN, Zenodo (Mar. 2019), https://doi.org/10.5281/zenodo.2601857, Note: Please check https://github.com/GilesStrong/lumin/graphs/contributors for the full list of contributors
@misc{giles_chatham_strong_2019_2601857,
author = {Giles Chatham Strong},
title = {LUMIN},
month = mar,
year = 2019,
note = {{Please check https://github.com/GilesStrong/lumin/graphs/contributors for the full list of contributors}},
doi = {10.5281/zenodo.2601857},
url = {https://doi.org/10.5281/zenodo.2601857}
}