-
Notifications
You must be signed in to change notification settings - Fork 631
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from mmmwhy/wip-fy
feat(schedule): cosine schedule with warmup
- Loading branch information
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# !/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# @author: mmmwhy <mmmwhy@mail.ustc.edu.cn> | ||
# @date: 2022/02/12 | ||
# | ||
"""""" | ||
import math | ||
|
||
import torch | ||
from torch.optim import Optimizer | ||
from torch.optim.lr_scheduler import LambdaLR | ||
|
||
|
||
def get_cosine_schedule_with_warmup( | ||
optimizer: Optimizer, num_warmup_steps: int, num_training_steps: int, num_cycles: float = 0.5, last_epoch: int = -1 | ||
): | ||
""" | ||
搬运自: https://github.com/huggingface/transformers/blob/2e9af294940083915ccb2740a7c8d5b154194f15/src/transformers/optimization.py#L103-L134 | ||
Create a schedule with a learning rate that decreases following the values of the cosine function between the | ||
initial lr set in the optimizer to 0, after a warmup period during which it increases linearly between 0 and the | ||
initial lr set in the optimizer. | ||
Args: | ||
optimizer (:class:`~torch.optim.Optimizer`): | ||
The optimizer for which to schedule the learning rate. | ||
num_warmup_steps (:obj:`int`): | ||
The number of steps for the warmup phase. | ||
num_training_steps (:obj:`int`): | ||
The total number of training steps. | ||
num_cycles (:obj:`float`, `optional`, defaults to 0.5): | ||
The number of waves in the cosine schedule (the defaults is to just decrease from the max value to 0 | ||
following a half-cosine). | ||
last_epoch (:obj:`int`, `optional`, defaults to -1): | ||
The index of the last epoch when resuming training. | ||
Return: | ||
:obj:`torch.optim.lr_scheduler.LambdaLR` with the appropriate schedule. | ||
""" | ||
|
||
def lr_lambda(current_step): | ||
if current_step < num_warmup_steps: | ||
return float(current_step) / float(max(1, num_warmup_steps)) | ||
progress = float(current_step - num_warmup_steps) / float(max(1, num_training_steps - num_warmup_steps)) | ||
return max(0.0, 0.5 * (1.0 + math.cos(math.pi * float(num_cycles) * 2.0 * progress))) | ||
|
||
return LambdaLR(optimizer, lr_lambda, last_epoch) |