Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created August 29, 2021 15:07
Show Gist options
  • Save bartubozkurt/1d76f8b96a5006580197e75f5a33b759 to your computer and use it in GitHub Desktop.
Save bartubozkurt/1d76f8b96a5006580197e75f5a33b759 to your computer and use it in GitHub Desktop.
model = tf.keras.Sequential([
tf.keras.layers.Flatten(input_shape=(28, 28)),
tf.keras.layers.Dense(128, activation='relu'),
tf.keras.layers.Dense(10)
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment