Created
November 19, 2022 10:17
-
-
Save vndee/b297d60e5f7026e515165cbcdca0e2c7 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 __future__ import print_function | |
from keras.datasets import fashion_mnist | |
from keras.layers import Dense, Flatten | |
from keras.layers import Conv2D, MaxPooling2D | |
from keras.models import Sequential | |
import matplotlib.pylab as plt | |
batch_size = 128 | |
num_classes = 10 | |
epochs = 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment