-
Notifications
You must be signed in to change notification settings - Fork 28
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
Current status of Boosted Tau #89
Draft
aloeliger
wants to merge
90
commits into
cms-tau-pog:master
Choose a base branch
from
aloeliger:BoostedTau_master
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.
Draft
Conversation
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
…nto BoostedTau_master
…oostedTau trainings
…into mergeEvalDev
aloeliger
changed the title
Current status of Boosted Tau (Not to be merged!)
Current status of Boosted Tau
Mar 19, 2022
… configuration options for boosted taus
…cut is below minimum NN output score
…duction code. Removes the redundant ED filter infrastructure, and changes the configuration to make useBoostedTauFilter an option given to TauTupleProducer. This option should now remove all non boosted tau type tau jets
Ntuples otherwise seem to get empty MVA evaluations
…nto BoostedTau_master
To integrate boostedTaus we need to move all code to python-based compilation (as already done for DataLoader or TauTuple code generation). Then in .h/.cpp files use a meta-language: e.g. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I had promised a while ago to open a PR for the changes made to the boosted tau that went into some of our initial trainings. This is the status of the boosted tau repository, current/merged with the master branch as of March 18, 2022. Please do not merge these changes of course. but perhaps we can discuss how to keep boosted tau developments and HPS tau developments concurrent.
That said, currently training is not working for this state of the boosted tau master branch. There seem to be compilation errors with the current status of the repository. Trying to use the current state of master with these code changes, we get:
Which are issues with these lines currently:
TauMLTools/Training/interface/DataLoader_main.h
Line 201 in 3f1a5cd
(
debug
, doesn't seem to be referenced anywhere else in DataLoader_main, is this prought in from the compiling python configuration, or is it global to one of the includes? the tau type errors are on my end I believe).TauMLTools/Training/interface/DataLoader_main.h
Line 249 in 3f1a5cd
(
DeepTauVSjet_cut
, also does not seem to be referenced elsewhere in DataLoader_main.)TauMLTools/Training/interface/DataLoader_main.h
Line 876 in 3f1a5cd
(
rm_inner_from_outer
similarly does not seem to be referenced elsewhere in DataLoader_main)I have attempted rolling back through versions of the dataloader with our changes done overtop of them, but even when I get to a version where only the
debug
error is present (and commented out), I get run time errors inDataLoaderBase
complaining about this line:TauMLTools/Training/python/DataLoaderBase.py
Line 20 in 3f1a5cd
I don't have the exact error available, but I believe it mentioned that
EagerTensor
(numpy.EagerTensor
perhaps?) has no attributeclone
, which seems like something mistyped is being handled by this function.I assume these errors are unique to Boosted Tau development at the moment? Has anyone else seen these? Is there perhaps a change I have made somewhere that seems to introduce an obvious conflict that has introduced these issues?
Even rolled back to even earlier Dataloader code from early February, we're running into issues with
NaN
s in the tensor:etc.
I am going to spend some debugging this, as this seems specific to our input.
The boosted tau production changes are also present in this code. Those will be removed when I go through the comments on the production branch.