-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths.py
20 lines (16 loc) · 1.03 KB
/
paths.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# The purpose of this file is to set the paths for the neural network python
# scripts to interact with the local file system. New users should, and must,
# modify these
# ==============================================================================
# This is the location of the data files used as input for the networks:
# ==============================================================================
DATA_DIR = '/data_ceph/dpanchal/DisplacedDiphoton/MicroNTuples/v10/'
# ==============================================================================
# This is the location of the directory to save the trained models:
# ==============================================================================
# SAVE_DIR = '/Users/benls/workdir/projects/utatlas/neural-llp/saved_models'
SAVE_DIR = './saved_models/'
# ==============================================================================
# This is the location of the directory to save figures:
# ==============================================================================
FIGS_DIR = './figures/'