-
Notifications
You must be signed in to change notification settings - Fork 9.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Learning rate decay #130
Comments
which example? |
:) You are too quick for me to even complete writing up my issue: |
args.lr is of type float. float / int in python is float right? |
But my lr appears to go down to zero, and stay there after epoch 14 (for my particular settings):
|
fixed via c4b48c4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line of word language modeling 177 should be dividing the learning rate by 4.0 and not 4 (float vs integer) for proper decay of learning rate.
https://github.com/pytorch/examples/blob/master/word_language_model/main.py#L177
The text was updated successfully, but these errors were encountered: