-
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 pull request #9 from CaioDaumann/2023_training
2023 training
- Loading branch information
Showing
22 changed files
with
3,228 additions
and
690 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# macOS system files | ||
.DS_Store | ||
._* | ||
|
||
# Python cache | ||
__pycache__/ | ||
*.pyc | ||
*.pyo | ||
*.pyd | ||
|
||
# Project-specific directories to ignore | ||
higgsdna_implementation/ | ||
old_enviroments_just_to_be_safe/ | ||
results/ | ||
run3_mvaID_models/ | ||
|
||
plots/ | ||
plotting_for_paper/ | ||
post_processing_script/ | ||
post_processing_script/paper_with_IC/ | ||
plot/validation_plots/ | ||
standalone_application/ | ||
standalone_application/* | ||
|
||
.github/workflows/._* | ||
|
||
# Logs | ||
logs/ | ||
*.log | ||
|
||
# Temporary files | ||
*.tmp | ||
*.swp | ||
*~ | ||
*.err |
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
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +1,4 @@ | ||
name: flow_corrections | ||
name: flow_corrections_5 | ||
channels: | ||
- conda-forge | ||
- defaults | ||
|
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,11 +1,21 @@ | ||
# This file holds the configurations train a normalizing flow by the main.py file | ||
# You can set multiple configurations and the main file will loop trough them and perform diferent trainings | ||
|
||
configuration_6: | ||
n_transforms : 10 | ||
aux_nodes : 512 | ||
aux_layers : 3 | ||
n_splines_bins : 8 | ||
initial_lr : 1.0e-3 | ||
batch_size : 1024 | ||
max_epochs : -35 | ||
configuration_2023_test_v3: | ||
n_transforms : 6 | ||
aux_nodes : 128 | ||
aux_layers : 2 | ||
n_splines_bins : 8 | ||
initial_lr : 1.0e-3 | ||
batch_size : 512 | ||
max_epochs : 75 | ||
DoKinematicsRW : True | ||
IsAutoRegressive: False | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
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
Oops, something went wrong.