mirror of
https://github.com/huggingface/pytorch-image-models.git
synced 2025-06-03 15:01:08 +08:00
* 🎨 structure docs * 🚧 wip docs * 📝 add installation doc * 📝 wip docs * 📝 wip docs * 📝 wip docs * 📝 wip docs * 📝 wip docs * 📝 add basic reference docs * 📝 remove augmentation from toctree * 👷 update pr doc builder to bugfix branch * 📝 wip docs * 🚧 wip * 👷 bump CI * 🚧 wip * 🚧 bump CI * 🚧 wip * 🚧 wip * 🚧 wip * 📝 add hf hub tutorial doc * 🔥 remove inference tut * 🚧 wip * 📝 wip docs * 📝 wip docs * 📝 update docs * 📝 move validation script doc up in order * 🎨 restructure to remove legacy docs * 📝 update index doc * 📝 update number of pretrained models * Update hfdocs/README.md * Update .github/workflows/build_pr_documentation.yml * Update build_pr_documentation.yml * bump * 📌 update gh action to use main branch * 🔥 remove comment
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
|