From a80bf6ea16057188b9c7aeccb1247248b5027a25 Mon Sep 17 00:00:00 2001 From: Newnius Date: Sat, 2 May 2020 10:51:42 +0800 Subject: [PATCH] update --- .idea/workspace.xml | 2 +- train.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index af11f3c..030e251 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -226,7 +226,7 @@ - + diff --git a/train.py b/train.py index 71bd77a..e144d98 100644 --- a/train.py +++ b/train.py @@ -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):