-
Notifications
You must be signed in to change notification settings - Fork 9
ipynb to py for helper files #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: hpc_workflow_management
Are you sure you want to change the base?
ipynb to py for helper files #36
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great - couple of changes I would recommend:
_paras->_paramsin the title and everywhere else?- Can we change this to a .yml file instead of .py? Better convention so it is easier to spot by people who may want to modify the settings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
…he config_training_NN_parms.yml
|
|
||
| NN_training_syst_process[process][syst][direction].train_ensemble(**sys_training_params) | ||
|
|
||
| # NN_training_syst_process[process][syst][direction].test_normalization() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this part generates plots. I've commented it for now but let me know if we aim for a different execution here!
| logger.info("Executing Training Loop...") | ||
|
|
||
| # If --train is passed, we FORCE training, ignoring 'load_trained_models' in YAML if needed | ||
| # sys_training_params['load_trained_models'] = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The step two onwards runs only when --train is passed as argument. In that case, should I force the load_trained_models to False, irrespective if what is being passed in the config?
|
|
||
| # Trim the dataset, so all processes have equal entries | ||
|
|
||
| # Here the notebook implemented the the number of ttbar events (lowest) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also a little different implementation form the notebook.
ipynb to py for the hpc workflow.
related issue #12