Enum MetaSGDLearningRateScheduleType
- Namespace
- AiDotNet.MetaLearning.Options
- Assembly
- AiDotNet.dll
Learning rate schedule types for Meta-SGD meta-training.
public enum MetaSGDLearningRateScheduleType
Fields
Constant = 0No scheduling, constant learning rate throughout training.
CosineAnnealing = 3Cosine annealing schedule for smooth decay.
Cyclical = 4Cyclical learning rates that oscillate between bounds.
Exponential = 2Exponential decay over time.
StepDecay = 1Step decay at specified intervals (e.g., halve every N episodes).
Remarks
These schedules control how the meta-learning rate (outer loop) changes during meta-training.