Skip to content
Snippets Groups Projects
Commit ae08f994 authored by Nikolai.Hartmann's avatar Nikolai.Hartmann
Browse files

try to avoid copying also when fitting scaler

parent 99b7dc94
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment