Last active
May 6, 2020 12:21
-
-
Save Praveenk8051/a033836e0b678c7aa0a3ae879e38e12c to your computer and use it in GitHub Desktop.
lr metric monitor 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
# 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