-
Notifications
You must be signed in to change notification settings - Fork 0
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
feature: add practical cosineannealingwarmuprestarts #53
Conversation
Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.0.0 to 9.0.1. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](python-pillow/Pillow@9.0.0...9.0.1) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Bump pillow from 9.0.0 to 9.0.1
Develop to Master
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
와 이정도면 Transformers에 PR날리셔야하는거 아닙니까? ㅎㅎ 인사이트 감사합니다.
configs/deberta.yaml
Outdated
@@ -1,5 +1,5 @@ | |||
program_param: | |||
wandb_key: b41fa9bf3a38422dafc16e253d84694489607e9f | |||
wandb_key: 6b115fa825114338c0e612d95f732074ccf832c8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wandb_key는 빼고 관리하는게 좋을거같긴합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제거하시고 머지하세요!
오 감사합니다. 스케쥴러 실험도 제대로 할 수 있겠네요 ㅎㅎ |
configs/deberta.yaml
Outdated
@@ -1,5 +1,5 @@ | |||
program_param: | |||
wandb_key: b41fa9bf3a38422dafc16e253d84694489607e9f | |||
wandb_key: 6b115fa825114338c0e612d95f732074ccf832c8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제거하시고 머지하세요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 확인했으며 수고하셨습니다!
현재 pytorch에 구현되어있는 cosineannealingwarmuprestarts는 논문에서 제시한 scheduler를 완벽히 구현하고있지는 못합니다.
LR값이 cosine 주기로 가면서 동시에 convergence도 이루어지는 scheduler 를 추가하였습니다.
사용하실 때는 model_param.scheduler 에 cos_ann_warm_cus 를 입력하면됩니다.
ref: https://gaussian37.github.io/dl-pytorch-lr_scheduler/