Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 628 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 628 Bytes

Tau Identification

Machine learning algorithms for tau particle identification.

Setup

Add directory to python path:

cd ~/TauID
source setup.sh

Convert data

To convert ROOT file to numpy structured array:

cd ~/TauID/convert
python convert.py /path/to/file.root -n [num_events]

Training

To run a simple training:

cd ~/TauID/train
python train.py -s /path/to/signal_file.z \
-b /path/to/background_file.z \
-c config_onelayer.yaml

and evaluate the training:

python evaluate.py -l saved-data/onelayer_base.hdf5 \
-d saved-models/onelayer_base/ \
-c config_onelayer.yml \