ksuit.schedules.polynomial.increasing ===================================== .. py:module:: ksuit.schedules.polynomial.increasing Classes ------- .. autoapisummary:: ksuit.schedules.polynomial.increasing.PolynomialIncreasingSchedule Module Contents --------------- .. py:class:: PolynomialIncreasingSchedule(config) Bases: :py:obj:`ksuit.schedules.base.IncreasingProgressSchedule` A scheduler that increases polynomially from the minimum to maximum value over the total number of steps. Initialize the scheduler. :param config: Configuration for the polynomial increasing schedule. .. rubric:: Example >>> schedule_config: >>> kind: ksuit.schedules.PolynomialIncreasingSchedule >>> power: 2.0 >>> start_value: 1e-6 >>> max_value: ${model.optim.lr} # reference to the lr defined above .. py:attribute:: power