ksuit.schedules.cosine.increasing ================================= .. py:module:: ksuit.schedules.cosine.increasing Classes ------- .. autoapisummary:: ksuit.schedules.cosine.increasing.CosineIncreasingSchedule Module Contents --------------- .. py:class:: CosineIncreasingSchedule(config) Bases: :py:obj:`ksuit.schedules.base.IncreasingProgressSchedule` Cosine annealing scheduler with increasing values. .. rubric:: Example >>> schedule_config: >>> kind: ksuit.schedules.CosineIncreasingSchedule >>> max_value: ${model.optim.lr} >>> start_value: 0.0 Initialize the scheduler. :param start_value: The initial and thus minimum value of the scheduler. :param max_value: The final and thus maximum value of the scheduler.