We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f94f64 commit d2dad62Copy full SHA for d2dad62
tools/val.py
@@ -149,7 +149,6 @@ def main(args):
149
info_params['feature_cols'] = cols
150
if dataset.get('scale', False):
151
scaler_cols = info_params['feature_cols']
152
- scaler.fit(df[scaler_cols])
153
df[scaler_cols] = scaler.transform(df[scaler_cols])
154
ts_val = TSDataset.load_from_dataframe(df, **info_params)
155
elif cfg.task == 'classification':
@@ -168,7 +167,6 @@ def main(args):
168
167
'target_cols'].split(',')
169
170
scaler_cols = info_params['target_cols']
171
172
173
174
0 commit comments