CosineAnnealingScheduler#
- class composer.optim.CosineAnnealingScheduler(t_max='1dur', alpha_f=0.0)[source]#
Decays the learning rate according to the decreasing part of a cosine curve.
See also
This scheduler is based on
CosineAnnealingLR
from PyTorch.Specifically, the learning rate multiplier can be expressed as:
Given , the fraction of time elapsed (clipped to the interval ), as:
Where represents the duration of this scheduler, and represents the learning rate multiplier to decay to.