1
0
mirror of https://github.com/newnius/YAO-optimizer.git synced 2025-06-06 22:51:55 +00:00
This commit is contained in:
Newnius 2020-05-02 01:29:49 +08:00
parent fb7b2ef8ad
commit 1a92b83f29

View File

@ -128,7 +128,7 @@ class Data:
test_data_yqy = []
# test_data_yqy=test_data_yqy[1:21]
feature_data = (test_data_yqy - self.mean) / self.std
test_x = [feature_data][:, 0]
test_x = [feature_data][:, 0:1]
print(test_x)
return np.array(test_x)