-
models/ Several classes are defined to implement the interaction network and facilitate graph input/output:
- interaction_network.py: network architecture implemented in PyTorch Geometric (PyG)
- dataset.py: custom data loader for multi-threaded graph loading in the PyG Data representation
-
Graph Construction: Graph construction algorithms (in
graph_construction/
) process TrackML samples (e.g.train_1
) into hitgraphs, which are defined as tuples of node features, edge features, truth labels, and edge indices in COOrdinate format. Several graph construction algorithms are available, each of which is configured by a set of particle-specific and geometric edge selections:- build_geometric.py: geometric edge selection algorithm to build graphs in the pixel barrel layers, example usage:
python build_geometric.py configs/geometric.py
- build_pre-clustering.py: DBSCAN clustering algorithm used build graphs via clustering in eta-phi space, example usage:
python build_pre-clustering.py configs/pre-clustering.py
- build_data-driven.py: module map method used to build graphs based on previously observed data, example usage:
python build_pre-clustering.py configs/pre-clustering.py
- Note that a module map is necessary to run this graph construction method. Module maps are built and stored in the
graph_construction/module_maps
directory. Note that an orthogonal data sample should be used to construct the module map; for example, to build graphs fromtrain_1
, a module map fromtrain_<2-5>
.
- Note that a module map is necessary to run this graph construction method. Module maps are built and stored in the
- build_geometric.py: geometric edge selection algorithm to build graphs in the pixel barrel layers, example usage:
-
Training and Inference:
run_interaction_network.py
: IN training script, example usage:
python run_interaction_network.py --pt=1 --construction=heptrkx_plus --lr=0.005 --gamma=0.9 --save-model
gnn_inference/
contains a script for testing the classification accuracy of a set of trained modelstiming_scan_bash.py
: inference timing script, example usage:- CPU-only inference:
python timing_scan_bash.py --construction=heptrkx_plus_pyg --graphs=5 --batchsize=1 --loops=100 --repeat=5
- GPU inference:
python timing_scan_bash.py --gpu --construction=heptrkx_plus_pyg --graphs=5 --batchsize=1 --loops=100 --repeat=5
- Note, the code assumes some hitgraphs are located in the following directory structure
hitgraphs ├── heptrkx_plus_pyg_0GeV5 ├── heptrkx_plus_pyg_0GeV6 ├── heptrkx_plus_pyg_0GeV7 ├── heptrkx_plus_pyg_0GeV8 ├── heptrkx_plus_pyg_0GeV9 ├── heptrkx_plus_pyg_1GeV ├── heptrkx_plus_pyg_1GeV5 └── heptrkx_plus_pyg_2GeV
-
Track Building:
- Track building algorithms cluster hits in the edge-weigted graphs. Several tracking efficiency definitions are implemented in
track_building/measure_tracking_effs.py
and are reported per sample, per pt, and per eta.
- Track building algorithms cluster hits in the edge-weigted graphs. Several tracking efficiency definitions are implemented in
-
Notifications
You must be signed in to change notification settings - Fork 0
kleifgch/dezoort_interaction_network
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
My fork from https://github.com/GageDeZoort/interaction_network_paper
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published