-
Notifications
You must be signed in to change notification settings - Fork 2
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
Draft: Enabling training on MCPE pulses #29
Open
fschlueter
wants to merge
29
commits into
master
Choose a base branch
from
enable_mcpe_training
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
e7a5ed9
Simplify code
fschlueter cb05b28
Remove hard-coded label_key LabelsDeepLearning. Allow to train on MCPEs.
fschlueter 009d351
Fixed setting charge index. Slightly refactor code to avoid future wa…
fschlueter bd3a139
Add new config file for training on MCPEs
fschlueter 0dc9634
Keep training and testing data independent
fschlueter 871c5c8
Allow to specify parameter names in config
fschlueter cc2a8da
Propagate new argument correctly
fschlueter 37abda5
Update config for MCPE training
fschlueter 10fadf1
Add missing config
fschlueter 4f4bc0c
Set number of iteration to 1M
fschlueter 1d2f440
Update MCPE config
fschlueter 382fd55
Do not run validation in the first iteration
fschlueter 8d51035
Add function which evaluates pdf only for one DOM
fschlueter e0863ac
Add module to evaluate mcpe eg models
fschlueter 3229861
Clean up. Add correct time call to photonics function
fschlueter 252a91f
Add cdf_per_dom function and get_probability_quantiles_per_dom
fschlueter b85d0ee
Little clean up
fschlueter 8d62758
Store total charge per dom as well. Improve filename for figures
fschlueter 16f6cbc
Add function which only calculates total charge per dom
fschlueter ea00a1d
fix ws
fschlueter f1fb9e8
Remove hard-coded label_key LabelsDeepLearning. Allow to train on MCPEs.
fschlueter 0c71958
Fixed setting charge index. Slightly refactor code to avoid future wa…
fschlueter bc591ae
Add new config file for training on MCPEs
fschlueter 84a74bd
Export to hdf5 rather than i3
fschlueter 22392b8
Merge branch 'master' into enable_mcpe_training
fschlueter d837934
Allow evaluation in eager mode
mhuen de144f8
Code refactoring
fschlueter c7f9187
Merge branch 'FixMultiLearningRateScheduler' into enable_mcpe_training
fschlueter dec3eb0
Improve code. access charge from hdf files by name and not index
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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,7 +1,9 @@ | ||
from egenerator.ic3.reconstruction import EventGeneratorReconstruction | ||
from egenerator.ic3.simulation import EventGeneratorSimulation | ||
from egenerator.ic3.evaluate_mcpe import CalculateLikelihood | ||
|
||
__all__ = [ | ||
"EventGeneratorReconstruction", | ||
"EventGeneratorSimulation", | ||
"CalculateLikelihood", | ||
] |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 think this needs to remain in the kwargs. Modules are not forced to specify/use a
label_key
. But I also have a slightly different implementation in theCollectBreakingChanges
branch.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.
Not quite sure that I fully understand why it hace to remain in kwargs.