-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 #4 from andrzejnovak/switch
Switch
- Loading branch information
Showing
7 changed files
with
18 additions
and
38 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
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
12 changes: 0 additions & 12 deletions
12
RecoBTag/TensorFlow/python/pfMassIndependentDeepDoubleBvLJetTags_cfi.py
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
RecoBTag/TensorFlow/python/pfMassIndependentDeepDoubleCvBJetTags_cfi.py
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
RecoBTag/TensorFlow/python/pfMassIndependentDeepDoubleCvLJetTags_cfi.py
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
RecoBTag/TensorFlow/python/pfMassIndependentDeepDoubleXJetTags_cff.py
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,15 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from pfDeepDoubleBvLJetTags_cfi import pfDeepDoubleBvLJetTags | ||
from pfDeepDoubleCvLJetTags_cfi import pfDeepDoubleCvLJetTags | ||
from pfDeepDoubleCvBJetTags_cfi import pfDeepDoubleCvBJetTags | ||
|
||
pfMassIndependentDeepDoubleBvLJetTags = pfDeepDoubleBvLJetTags.clone( | ||
graph_path = cms.FileInPath('RecoBTag/Combined/data/DeepDoubleX/94X/V01/DDB_mass_independent.pb') | ||
) | ||
pfMassIndependentDeepDoubleCvLJetTags = pfDeepDoubleCvLJetTags.clone( | ||
graph_path = cms.FileInPath('RecoBTag/Combined/data/DeepDoubleX/94X/V01/DDC_mass_independent.pb') | ||
) | ||
pfMassIndependentDeepDoubleCvBJetTags = pfDeepDoubleCvBJetTags.clone( | ||
graph_path = cms.FileInPath('RecoBTag/Combined/data/DeepDoubleX/94X/V01/DDCvB_mass_independent.pb') | ||
) | ||
|