Skip to content

Commit

Permalink
Fix issue with EMNIST
Browse files Browse the repository at this point in the history
  • Loading branch information
christianversloot committed Jan 9, 2020
1 parent bab25b1 commit 1ef521f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra_keras_datasets/emnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ def load_data(path='emnist_matlab.npz', type='balanced'):
input_test = input_test.reshape((input_test.shape[0], 28, 28), order='F')

# Return data
return (input_train, target_train), (input_test, target_train)
return (input_train, target_train), (input_test, target_test)

0 comments on commit 1ef521f

Please sign in to comment.