mirror of
https://github.com/huggingface/pytorch-image-models.git
synced 2025-06-03 15:01:08 +08:00
fixed head to gap->norm->fc as per convnext, along with option for norm->gap->fc failed tests due to clip convnext models, davit tests passed
20 lines
644 B
Plaintext
20 lines
644 B
Plaintext
# Learning Rate Schedulers
|
|
|
|
This page contains the API reference documentation for learning rate schedulers included in `timm`.
|
|
|
|
## Schedulers
|
|
|
|
### Factory functions
|
|
|
|
[[autodoc]] timm.scheduler.scheduler_factory.create_scheduler
|
|
[[autodoc]] timm.scheduler.scheduler_factory.create_scheduler_v2
|
|
|
|
### Scheduler Classes
|
|
|
|
[[autodoc]] timm.scheduler.cosine_lr.CosineLRScheduler
|
|
[[autodoc]] timm.scheduler.multistep_lr.MultiStepLRScheduler
|
|
[[autodoc]] timm.scheduler.plateau_lr.PlateauLRScheduler
|
|
[[autodoc]] timm.scheduler.poly_lr.PolyLRScheduler
|
|
[[autodoc]] timm.scheduler.step_lr.StepLRScheduler
|
|
[[autodoc]] timm.scheduler.tanh_lr.TanhLRScheduler
|