Skip to content

Deep recurrent network for tagging hadronic jets at ATLAS. This repo highlights the work I did for my undergraduate thesis.

License

Notifications You must be signed in to change notification settings

rdesc/deep-learning-llp-tagger

Repository files navigation

Deep learning LLP tagger

This repo highlights the work I have done as part of my undergraduate thesis at UBC. The experiments outlined in my paper will not be reproducible since the datasets are not meant to be shared outside of the ATLAS collaboration. Note there are several scripts that were omitted from this public repo to emphasize the work I contributed to the overall ATLAS analysis and is summarized in this README.

Intro

Many extensions to the Standard Model (SM) suggest the existence of long lived particles (LLP) that only interact with the SM through a weakly-coupled mediator. The extended lifetime of these particles and the weak interaction with the SM would result in displaced hadronic jets in the ATLAS detector. Ongoing and published research by the ATLAS collaboration, have presented machine learning models to classify displaced jets in the ATLAS calorimeters. In my thesis, I proposed a modified architecture with the aim to improve the model performance.

Initial Study

Prior to exploring improved model architectures, an experiment was performed to verify the decision to sort certain input data by transverse momentum (pT) due to the nature of LSTM layers expecting ordered inputs. Three models were trained with the following pT orderered datasets: descending, ascending, and random.

I modified the preprocessing step here to include logic that handles/executes the different pT ordering options. I also made the script pt_ordering_plot.py to visualize the different pT distributions.

Results from a KFold cross validation showed the models trained with the ascending and descending pT ordered datasets performed better than the model trained with the random pT ordered dataset.

Main Contribution

Below is the proposed model architecture which builds off a recurrent deep network. In comparison to the previous architecture, input layers feed into 1D convolutional (Conv1D) filters with kernel size 1 instead of feeding into LSTMs. These Conv1D layers perform global feature extraction and dimensionality reduction, without a spatial aspect since these filters (with kernel size 1) capture a single row at a time. As a result of the addition of these layers, highly discriminating and compressed features are fed into the LSTMs.

A hyperparameter grid search was performed to optimize the modified model architecture. Below is a comparison between the proposed model and the previous model. The proposed network attained a relative improvement of 10% in ROC AUC in comparison to the original model. My full thesis report which describes the project in detail can be found archived on the UBC online library.

Model ROC AUC Accuracy
Proposed model 0.96 0.97
Previous model 0.87 0.94

About

Deep recurrent network for tagging hadronic jets at ATLAS. This repo highlights the work I did for my undergraduate thesis.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published