Created
June 12, 2018 09:43
-
-
Save rahulkrishnan98/b639423aa1fe66f4884fe7506929dec2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #normalize | |
| X_train=X_train/255 | |
| X_test=X_test/255 | |
| #one hot encoding | |
| y_train=np_utils.to_categorical(y_train) | |
| y_test=np_utils.to_categorical(y_test) | |
| num_classes=y_test.shape[1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment