Created
May 6, 2020 11:36
-
-
Save Praveenk8051/225bc88f83b1fae328adc2801275e0f1 to your computer and use it in GitHub Desktop.
optimizer mnist
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
# Optimizer | |
optimizer = RMSprop(lr=0.001, rho=0.9, epsilon=1e-08, decay=0.0) | |
# Compile the model | |
model.compile(optimizer = optimizer , loss = "categorical_crossentropy", metrics=["accuracy"]) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment