1
0
mirror of https://github.com/newnius/YAO-optimizer.git synced 2025-12-13 08:26:43 +00:00
This commit is contained in:
2020-05-02 10:51:42 +08:00
parent c4ecfc9250
commit a80bf6ea16
2 changed files with 3 additions and 1 deletions

View File

@@ -92,7 +92,9 @@ def experiment(repeats, series, seed):
# split data into train and test-sets
train, test = supervised_values[0:-12], supervised_values[-12:]
# transform the scale of the data
print(test)
scaler, train_scaled, test_scaled = scale(train, test)
print(test_scaled)
# run experiment
error_scores = list()
for r in range(repeats):