diff --git a/mala/network/runner.py b/mala/network/runner.py index 6b2fd0bef..a67a79eb0 100644 --- a/mala/network/runner.py +++ b/mala/network/runner.py @@ -579,12 +579,8 @@ def save_run( ) else: self.network.save_network(os.path.join(path, model_file)) - self.data.input_data_scaler.save( - os.path.join(path, iscaler_file) - ) - self.data.output_data_scaler.save( - os.path.join(path, oscaler_file) - ) + self.data.input_data_scaler.save(os.path.join(path, iscaler_file)) + self.data.output_data_scaler.save(os.path.join(path, oscaler_file)) files = [model_file, iscaler_file, oscaler_file, params_file] if save_runner: