DeeLeMaLink
Overview
$\textsf{DeeLeMa}$ is a deep learning network designed to analyze energies and momenta in particle collisions at high-energy colliders. Built with a foundation on symmetric event topology, $\textsf{DeeLeMa}$'s generated mass distributions demonstrate robust peaks at the physical masses, even after accounting for combinatoric uncertainties and detector smearing effects. With its adaptability to different event topologies, $\textsf{DeeLeMa}$'s effectiveness shines when corresponding kinematic symmetries are adopted.
The current version of $\textsf{DeeLeMa}$ (v1.0.0) is constructed on the $t\bar{t}$-like antler event topology which is shown below figure.
Requirements
Using Pip
pip3 install -r requirements.txt
Using PDM (Recommended)
If you haven't installed pdm
yet:
# Linux / Mac
curl -sSL https://pdm.fming.dev/install-pdm.py | python3 -
# Windows
(Invoke-WebRequest -Uri https://pdm.fming.dev/install-pdm.py -UseBasicParsing).Content | python -
With PDM installed:
# Install dependencies from pyproject.toml
pdm install
# Activate virtual environment (venv)
source .venv/bin/activate
Getting Started
-
Clone the Repository
git clone https://github.com/Yonsei-HEP-COSMO/DeeLeMa.git
-
Install Dependencies:
Follow the Requirements section for instructions.
-
Training:
⚠️ Caution
Before training, ensure you modify the data path in
train.py
to point to the location of your data. For more details, refer totrain.py
.To train the model, execute the following command:
python train.py
-
Monitoring:
To monitor the training process, run
tensorboard
:tensorboard --logdir=logs/
⚠️ Caution
If you use PDM then should run tensorboard in activated virtual environment.
Citation
If $\textsf{DeeLeMa}$ benefits your research, please acknowledge our efforts by citing the following paper:
@article{Ban:2022hfk,
author = "Ban, Kayoung and Kang, Dong Woo and Kim, Tae-Geun and Park, Seong Chan and Park, Yeji",
title = "{DeeLeMa: Missing Information Search with Deep Learning for Mass Estimation}",
eprint = "2212.12836",
archivePrefix = "arXiv",
primaryClass = "hep-ph",
month = "12",
year = "2022"
}
Reference
- K. Ban, D. W. Kang, T.-G Kim, S. C. Park, and Y. Park, DeeLeMa: Missing Information Search with Deep Learning for Mass Estimation, arXiv:2212.12836
License
$\textsf{DeeLeMa}$ is released under the MIT License. For more details, see the LICENSE
file in the repository.