Skip to content

Instantly share code, notes, and snippets.

@Praveenk8051
Created May 6, 2020 11:36
Show Gist options
  • Save Praveenk8051/225bc88f83b1fae328adc2801275e0f1 to your computer and use it in GitHub Desktop.
Save Praveenk8051/225bc88f83b1fae328adc2801275e0f1 to your computer and use it in GitHub Desktop.
optimizer mnist
# 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