Deep learning implementations for sustainable matrix element method calculations
Project description
DeepMEM
This repository contains the code that was used for the IRIS-HEP Fellowship project: Deep Learning Implementations for Sustainable Matrix Element Method Calculations.
Project Description
The Matrix Element Method (MEM) is a powerful statistical analysis technique for experimental and simulated particle physics data. It has several benefits over black-box methods like neural networks, owing to its transparent and interpretable results. The drawback of MEM; however, is the significant amount of computationally intensive calculations involved in its execution, which impedes research that relies on it. This project aims to improve the viability of MEM, by implementing deep learning techniques to accurately and efficiently approximate MEM calculations - providing the much required speedup over the traditional approach, while preserving its interpretability. The implemented model can be used as a good approximation during the exploratory phase of research, and the full ME calculations can be used for the final runs, making the workflow for research involving MEM much more efficient.
Installation
From PyPI
deepmem
is distributed on PyPI and can be installed in your Python virtual environment with pip
$ python -m pip install deepmem
From version control
deepmem
can also be installed from source by cloning a version of this repository and then from the top level of the repository locally installing in your Python virtual environment with pip
$ python -m pip install .
Developers will probably want to create an editable install so their code changes are automatically picked up without having to reinstall
$ python -m pip install --editable .
Requirements for deployment
The code is stable in python 3.8.5. Use the requirements.txt
file to install the dependencies using pip
or package installer of choice.
Explanation of inputs
To run this code simply run deepmem
with the required shell arguments and input file modifications.
The code takes two types of inputs:
- Through an JSON input file (e.g.:
input_files/input.json
): This is supposed to have inputs that do not require dynamimc user changes, i.e, during the training/optimization phase these will remain mostly constant. - Through shell arguments (e.g. deepmem
--device=0
): These are inputs that would usually require dynamic user changes before running the code.
Examples:
Go through the input file at input_files/input.json
and modify the paths to the data, where to save and load models, scalers, etc.
Then run the following code to train the model on the options in the input_files/input.json
using the 0th numbered CUDA GPU for 50 epochs:
$ deepmem --device=0 --epochs=50 --mode=train
Thereafter run the following code to run the testing phase once again using the options in the input_files/input.json
using the 0th numbered CUDA GPU for inference:
$ deepmem --device=0 --mode=test
It should save a histogram with a visual explanation of the model performance in post/histogram.png
(path can be changed in input file)
Shell Arguments Explanation:
$ deepmem --help
usage: deepmem [-h] [--loader LOADER] [--device DEVICE] [--epochs EPOCHS] [--inputfile INPUTFILE] [--mode MODE]
optional arguments:
-h, --help show this help message and exit
--loader LOADER
--device DEVICE
--epochs EPOCHS
--inputfile INPUTFILE
--mode MODE 'train' or 'test'
Pass these to deepmem
when running the code.
-
--loader: [Default: hybridMT] Which dataloader implementation to use out of [inbuilt, hybrid, hybridMT] AT THE MOMENT ONLY hybridMT is properly supported. It loads all the data into memory and can be use for reasonably sized datasets (works comfortably with ~300k events on DGX)
-
--device: [Default: None] Which numbered cuda device to use for training. Using
None
will select the CPU instead (Not recommended) -
--epochs: [Default: 10] Number of epochs to train for
-
--inputfile: [Default: input_files/input.json] Path to the input file
-
--mode: [Default: train] Whether to run in training mode or testing mode
Input File Options Explanation:
-
input_paths : [ list of strings ] Contains paths to the .root files of the inputs (events data)
-
output_paths : [ list of strings ] Contains paths to the .root files of the outputs (weights) corresponding to the inputs above
-
input_tree : [ string ] Specifies which tree/directory in the input file to parse
-
output_tree : [ string ] Specifies which tree/directory in the output file to parse
-
prefixes : [ list of list of strings ] Contains the prefixes to search for in the input file. Further explanation below
-
suffixes : [ list of list of strings ] Contains the suffixes to search for in the input file. Further explanation below
for example:
If prefixes are [ ["lep1_"] , ["lep2_", "j1_"] , ["MET"] ] and suffixes are [ ["PT"] , ["PT", "Eta"] , ["", "_Phi"]] the dataloader wil load the following variables from the input file lep1_PT, "lep2_PT, lep2_Eta, j1_PT, j1_Eta, MET, MET_Phi
. It is basically all combinations of prefixes and suffixes from lists at the same index.
-
dir_name_processing : [ boolean ] [ DEPRECATED ]Further processing on the particle name string (if required) to identify particle directory.
-
weights : [ list of strings ] Specifies the directory with weights associated with each event
-
batch_size : [ integer ] Batch size hyperparameter for training. Relevant for
--loader=hybrid and --loader=hybridMT
-
chunk_entries : [ integer ] Specifies the number of entries in one loaded chunk. Only Relevant for
--loader=hybrid
NOT RELEVANT FOR hybridMT -
shuffle : [ boolean ] Whether the loaded data needs to be shuffled. Relevant for
--loader=hybrid and --loader=hybridMT
-
split : [ list of 3 ints ] Training, Validation and Testing Split KEEP THIS AT 8,1,1 for now since stability of other splits is still being determined
-
LearningRate : [ float ] Initial learning rate of the model
-
save_lowest_loss_model_at : [ string ] Where to save model that achieved lowest loss during training
-
save_scaler_at : [ string ] Where to save scaler fit to the training data (during training)
-
load_saved_model_from : [ string ] Where to load model that will be used during testing phase
-
load_scaler_from : [ string ] Where to load scaler that will be used during testing phase (should be the same scaler that was saved during training phase)
-
save_testing_histogram_at : [ string ] Where to save final output histogram
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 deepmem-0.0.1.tar.gz
.
File metadata
- Download URL: deepmem-0.0.1.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108938bd0a67ffcee5fedea206ca11f5065b4b232f543480618a72e3962c72e4 |
|
MD5 | d36933aa8ff63a2a840b5f07b23d3d4c |
|
BLAKE2b-256 | bcd2cd4d89f4460253de3d1da05ab23c2b9b065d465360d3f3ca5f4315a5845f |
File details
Details for the file deepmem-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: deepmem-0.0.1-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 855b06494542afb5167f9b1796c3270ee7f96b4f6fe778129948bd00c856b9d7 |
|
MD5 | be17ccb2c9b87ddbced19ba484600650 |
|
BLAKE2b-256 | 1f8bf1d77565175e9f06309cbaeb6aea031a546b8e98c3a6909667ada073c485 |