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:25:27 +08:00
parent 9d2d0635c3
commit 157492f971
2 changed files with 43 additions and 36 deletions

View File

@@ -102,7 +102,7 @@ def experiment(repeats, series, seed):
batch_size = 4
t = train.shape[0] % batch_size
train = train[train.shape[0] - t * batch_size:]
test = test.shape[0] % batch_size
t = test.shape[0] % batch_size
test = test[test.shape[0] - t * batch_size:]
train_trimmed = train_scaled[2:, :]