Skip to content

Instantly share code, notes, and snippets.

@Praveenk8051
Last active May 6, 2020 12:21
Show Gist options
  • Save Praveenk8051/a033836e0b678c7aa0a3ae879e38e12c to your computer and use it in GitHub Desktop.
Save Praveenk8051/a033836e0b678c7aa0a3ae879e38e12c to your computer and use it in GitHub Desktop.
lr metric monitor mnist
# Set LR metric monitor
learning_rate_reduction = ReduceLROnPlateau(monitor='val_acc',
patience=3,
verbose=1,
factor=0.4,
min_lr=0.00001)
epochs = 500
batch_size = 32 #to start with
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment