Created
May 23, 2021 10:46
-
-
Save adhadse/8e446d351695101ed7d2280aab376179 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 = keras.models.Sequential() | |
model.add(keras.layers.Flatten(input_shape=[28, 28])) | |
model.add(keras.layers.Dense(300, activation="relu")) | |
model.add(keras.layers.Dense(100, activation="relu")) | |
model.add(keras.layers.Dense(10, activation="softmax")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment