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
ae08f994
Commit
ae08f994
authored
6 years ago
by
Nikolai.Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
try to avoid copying also when fitting scaler
parent
99b7dc94
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
toolkit.py
+4
-0
4 additions, 0 deletions
toolkit.py
with
4 additions
and
0 deletions
toolkit.py
+
4
−
0
View file @
ae08f994
...
@@ -19,6 +19,7 @@ import csv
...
@@ -19,6 +19,7 @@ import csv
import
math
import
math
import
glob
import
glob
import
shutil
import
shutil
import
gc
import
logging
import
logging
logger
=
logging
.
getLogger
(
"
KerasROOTClassification
"
)
logger
=
logging
.
getLogger
(
"
KerasROOTClassification
"
)
...
@@ -536,7 +537,10 @@ class ClassificationProject(object):
...
@@ -536,7 +537,10 @@ class ClassificationProject(object):
else
:
else
:
raise
ValueError
(
"
Scaler type {} unknown
"
.
format
(
self
.
scaler_type
))
raise
ValueError
(
"
Scaler type {} unknown
"
.
format
(
self
.
scaler_type
))
logger
.
info
(
"
Fitting {} to training data
"
.
format
(
self
.
scaler_type
))
logger
.
info
(
"
Fitting {} to training data
"
.
format
(
self
.
scaler_type
))
orig_copy_setting
=
self
.
scaler
.
copy
self
.
scaler
.
copy
=
False
self
.
_scaler
.
fit
(
self
.
x_train
,
**
scaler_fit_kwargs
)
self
.
_scaler
.
fit
(
self
.
x_train
,
**
scaler_fit_kwargs
)
self
.
scaler
.
copy
=
orig_copy_setting
joblib
.
dump
(
self
.
_scaler
,
filename
)
joblib
.
dump
(
self
.
_scaler
,
filename
)
return
self
.
_scaler
return
self
.
_scaler
...
...
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