noether.core.schedules.constant

Classes

ConstantSchedule

Constant value schedule that returns the same value for all steps.

Module Contents

class noether.core.schedules.constant.ConstantSchedule(config)

Bases: noether.core.schedules.base.ScheduleBase

Constant value schedule that returns the same value for all steps.

Example

schedule_config:
    kind: noether.core.schedules.ConstantSchedule
    value: ${model.optim.lr}
Parameters:

config (noether.core.schemas.schedules.ConstantScheduleConfig) – Configuration of the constant schedule. See ConstantScheduleConfig for details.

value