Skip to content

Instantly share code, notes, and snippets.

@staticor
Created January 5, 2019 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save staticor/fb64d9f34ec82595bc7039d66fd0baca to your computer and use it in GitHub Desktop.
Save staticor/fb64d9f34ec82595bc7039d66fd0baca to your computer and use it in GitHub Desktop.
keras_quickstart .py mnist datasets
import tensorflow as tf
# Load and prepare the MNIST dataset.
# Convert the samples from integers to floating-point numbers
mnist = tf.keras.datasets.mnist
(x_train, y_train), (x_test, y_test) = mnist.load_data()
x_train, x_test = x_train / 255.0, x_test / 255.0
model = tf.keras.models.Sequential([
tf.keras.layers.Flatten(),
tf.keras.layers.Dense(512, activation=tf.nn.relu),
tf.keras.layers.Dropout(0.2),
tf.keras.layers.Dense(10, activation=tf.nn.softmax)
])
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment