Created
August 29, 2021 15:07
-
-
Save bartubozkurt/1d76f8b96a5006580197e75f5a33b759 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
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