torch.optim.lr_scheduler.LRSchedulerOptions
export interface LRSchedulerOptions {
/** The index of the last epoch (default: -1) */
last_epoch?: number;
/** Whether to print LR changes (default: false) */
verbose?: boolean;
/** Internal flag to skip initial step for subclasses that need to initialize properties first */
skipInitialStep?: boolean;
}last_epoch(number)optional- – The index of the last epoch (default: -1)
verbose(boolean)optional- – Whether to print LR changes (default: false)
skipInitialStep(boolean)optional- – Internal flag to skip initial step for subclasses that need to initialize properties first
Options for LRScheduler constructor.