Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KerasROOTClassification
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eric.Schanet
KerasROOTClassification
Commits
401e4426
Commit
401e4426
authored
6 years ago
by
Nikolai.Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
option to ignore negative weight events
parent
7007d7c0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
toolkit.py
+9
-1
9 additions, 1 deletion
toolkit.py
with
9 additions
and
1 deletion
toolkit.py
+
9
−
1
View file @
401e4426
...
@@ -188,6 +188,8 @@ class ClassificationProject(object):
...
@@ -188,6 +188,8 @@ class ClassificationProject(object):
:param normalize_weights: normalize the weights to mean 1
:param normalize_weights: normalize the weights to mean 1
:param ignore_neg_weights: ignore events with negative weights in training (default: False)
"""
"""
...
@@ -257,7 +259,8 @@ class ClassificationProject(object):
...
@@ -257,7 +259,8 @@ class ClassificationProject(object):
loss
=
'
binary_crossentropy
'
,
loss
=
'
binary_crossentropy
'
,
mask_value
=
None
,
mask_value
=
None
,
apply_class_weight
=
True
,
apply_class_weight
=
True
,
normalize_weights
=
True
):
normalize_weights
=
True
,
ignore_neg_weights
=
False
):
self
.
name
=
name
self
.
name
=
name
self
.
signal_trees
=
signal_trees
self
.
signal_trees
=
signal_trees
...
@@ -339,6 +342,7 @@ class ClassificationProject(object):
...
@@ -339,6 +342,7 @@ class ClassificationProject(object):
self
.
mask_value
=
mask_value
self
.
mask_value
=
mask_value
self
.
apply_class_weight
=
apply_class_weight
self
.
apply_class_weight
=
apply_class_weight
self
.
normalize_weights
=
normalize_weights
self
.
normalize_weights
=
normalize_weights
self
.
ignore_neg_weights
=
ignore_neg_weights
self
.
s_train
=
None
self
.
s_train
=
None
self
.
b_train
=
None
self
.
b_train
=
None
...
@@ -437,6 +441,10 @@ class ClassificationProject(object):
...
@@ -437,6 +441,10 @@ class ClassificationProject(object):
selection
=
self
.
selection
,
selection
=
self
.
selection
,
start
=
1
,
step
=
self
.
step_bkg
,
stop
=
self
.
stop_test
)
start
=
1
,
step
=
self
.
step_bkg
,
stop
=
self
.
stop_test
)
if
self
.
ignore_neg_weights
:
self
.
s_train
=
self
.
s_train
[
self
.
s_train
[
self
.
weight_expr
]
>
0
]
self
.
b_train
=
self
.
b_train
[
self
.
b_train
[
self
.
weight_expr
]
>
0
]
self
.
rename_fields
(
self
.
s_train
)
self
.
rename_fields
(
self
.
s_train
)
self
.
rename_fields
(
self
.
b_train
)
self
.
rename_fields
(
self
.
b_train
)
self
.
rename_fields
(
self
.
s_test
)
self
.
rename_fields
(
self
.
s_test
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment