We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5cb79 commit d6810eeCopy full SHA for d6810ee
train.py
@@ -21,8 +21,8 @@ def load_data(is_train=True):
21
Y: 3-D array of int. Has the shape of (# total games, 9, 9) (for train)
22
or (batch_size, 9, 9) (for validation)
23
'''
24
- X = np.load('data/sudoku.npz')['quizzes'].astype(np.float32)
25
- Y = np.load('data/sudoku.npz')['solutions']
+ X = np.load('data/sudoku_quizzes.npy').astype(np.float32)
+ Y = np.load('data/sudoku_solutions.npy')
26
27
X = np.expand_dims(X, -1)
28
0 commit comments