glassbox.models.linear_model._enums¶
LearningSchedule enum.
LearningSchedule
¶
Bases: Enum
Learning rate scheduling strategies for linear models.
Attributes:
| Name | Type | Description |
|---|---|---|
CONSTANT |
LearningSchedule
|
Keep the learning rate fixed across epochs. |
TIME_DECAY |
LearningSchedule
|
Decrease the learning rate proportionally with epoch growth. |
EXPONENTIAL |
LearningSchedule
|
Decrease the learning rate exponentially over epochs. |