Open
Conversation
Add a training trick: Halve the learning rate if the performance on metrics not improving for [halve_lr_epochs] epochs, and then restart training by loading the previous best model.
Codecov Report
@@ Coverage Diff @@
## master #131 +/- ##
========================================
+ Coverage 67.9% 74.5% +6.6%
========================================
Files 90 88 -2
Lines 6306 7265 +959
========================================
+ Hits 4282 5413 +1131
+ Misses 2024 1852 -172
Continue to review full report at Codecov.
|
Contributor
|
Sorry for late reply. |
Author
|
@FengZiYjun Thanks for your review~ |
FengZiYjun
approved these changes
Feb 5, 2019
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
Add a training trick: Halve the learning rate if the performance on metrics not improving for [halve_lr_epochs] epochs, and then restart training by loading the previous best model.
"halve_lr_epochs" denotes the epochs of which performance on metrics not improving. Default: -1 (never use it).
For example, we can use "halve_lr_epochs" as follows:
trainer = Trainer(model=model, n_epochs=100, optimizer=Adam(lr=0.01),validate_every=10, train_data=train_data, dev_data=dev_data, loss=CrossEntropyLoss(), metrics=AccuracyMetric(),use_tqdm=True, halve_lr_epochs=3 )Main reason: Many empirical experiments have shown that this kind of trick can improve the efficiency of training and make the final performance of the model better.
Checklist 检查下面各项是否完成
Please feel free to remove inapplicable items for your PR.
Changes: 逐项描述修改的内容
Mention: 找人review你的PR
@修改过这个文件的人
@核心开发人员