-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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/ schedule的文档 #4295
Comments
|
接着问一下,如何在SGD中使用 learning rate decay |
sgd_optimizer = fluid.optimizer.SGD(learning_rate=0.2) |
api里面的参数是按step进行下降,有没有接口可以根据epoch进行下降 |
paddle.fluid.layers.cosine_decay(learning_rate, step_each_epoch, epochs) 说明:使用 cosine decay 的衰减方式进行学习率调整。 参数:
代码示例: |
在目前的版本里没找到关于learning rate decay或者learning rate schedule用法的文档,可以麻烦哪位同学补一下么?
谢谢
The text was updated successfully, but these errors were encountered: