Created
November 25, 2018 18:15
-
-
Save cobanov/929d69270cb87ab8a65389c570dfa04e 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
import keras | |
from keras.datasets import mnist | |
from keras.models import Sequential | |
from keras.layers import Dense, Dropout, Flatten | |
from keras.layers import Conv2D, MaxPooling2D | |
from keras.layers import Activation | |
from keras.optimizers import Adam | |
from keras.callbacks import TensorBoard | |
import time |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment