Skip to content

Instantly share code, notes, and snippets.

@vndee
Created November 19, 2022 10:17
Show Gist options
  • Save vndee/b297d60e5f7026e515165cbcdca0e2c7 to your computer and use it in GitHub Desktop.
Save vndee/b297d60e5f7026e515165cbcdca0e2c7 to your computer and use it in GitHub Desktop.
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