Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MorvanZhou committed Mar 9, 2018
1 parent 0036113 commit 37de6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kerasTUT/6-CNN_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from keras.optimizers import Adam

# download the mnist to the path '~/.keras/datasets/' if it is the first time to be called
# X shape (60,000 28x28), y shape (10,000, )
# training X shape (60000, 28x28), Y shape (60000, ). test X shape (10000, 28x28), Y shape (10000, )
(X_train, y_train), (X_test, y_test) = mnist.load_data()

# data pre-processing
Expand Down

0 comments on commit 37de6e0

Please sign in to comment.