generated from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ewencedr/DeepLearning into …
…jet_feature_model
- Loading branch information
Showing
20 changed files
with
917 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
lightning_logs/ | ||
logs/ | ||
.cometml-runs | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,26 @@ | ||
_target_: src.data.jetclass_datamodule.JetClassDataModule | ||
data_dir: /beegfs/desy/user/birkjosc/datasets/jetclass_npz | ||
data_filename: jetclass_TTBar_2_000_000.npz | ||
|
||
# general parameters | ||
batch_size: 1024 | ||
num_workers: 32 | ||
pin_memory: False | ||
val_fraction: 0.10 | ||
test_fraction: 0.30 | ||
|
||
# preprocessing | ||
normalize: True | ||
normalize_sigma: 5 | ||
|
||
# spectator_jet_features: | ||
# - jet_pt | ||
|
||
# select jet types to use | ||
# list of the following: QCD, Hbb, Hcc, Hgg, H4q, Hqql, Zqq, Wqq, Tbqq, Tbl | ||
used_jet_types: null # null means all jet types | ||
|
||
# files and jet types to use | ||
data_dir: /beegfs/desy/user/birkjosc/datasets/jetclass_h5 | ||
filename_dict: | ||
train: ${data.data_dir}/train_100M/merged_standardized.h5 | ||
val: ${data.data_dir}/val_5M/merged_standardized.h5 | ||
test: ${data.data_dir}/test_20M/merged_standardized.h5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
_target_: src.data.jetclass_datamodule.JetClassDataModule | ||
|
||
# general parameters | ||
batch_size: 1024 | ||
num_workers: 32 | ||
pin_memory: False | ||
val_fraction: 0.10 | ||
test_fraction: 0.30 | ||
|
||
# preprocessing | ||
normalize: True | ||
normalize_sigma: 5 | ||
|
||
# spectator_jet_features: | ||
# - jet_pt | ||
|
||
# select jet types to use | ||
# list of the following: QCD, Hbb, Hcc, Hgg, H4q, Hqql, Zqq, Wqq, Tbqq, Tbl | ||
used_jet_types: null # null means all jet types | ||
|
||
# files and jet types to use | ||
data_dir: /beegfs/desy/user/birkjosc/datasets/jetclass_h5 | ||
filename_dict: | ||
train: ${data.data_dir}/train_100M/merged_standardized.h5 | ||
val: ${data.data_dir}/val_5M/merged_standardized.h5 | ||
test: ${data.data_dir}/test_20M/merged_standardized.h5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
latex_labels: | ||
label_QCD: QCD | ||
label_Hbb: $H(\rightarrow b\bar{b})$ | ||
label_Hcc: $H(\rightarrow c\bar{c})$ | ||
label_Hgg: $H(\rightarrow gg)$ | ||
label_H4q: $H(\rightarrow 4q)$ | ||
label_Hqql: $H(\rightarrow l \nu qq')$ | ||
label_Zqq: $Z(\rightarrow q\bar{q})$ | ||
label_Wqq: $W(\rightarrow q\bar{q})$ | ||
label_Tbqq: $t(\rightarrow b qq')$ | ||
label_Tbl: $t(\rightarrow b l \nu)$ |
Oops, something went wrong.