├── .gitignore ├── LICENSE ├── README.md ├── asset └── tensorboard.png ├── setup.py └── warmup_scheduler ├── __init__.py ├── run.py └── scheduler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/README.md -------------------------------------------------------------------------------- /asset/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/asset/tensorboard.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/setup.py -------------------------------------------------------------------------------- /warmup_scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/warmup_scheduler/__init__.py -------------------------------------------------------------------------------- /warmup_scheduler/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/warmup_scheduler/run.py -------------------------------------------------------------------------------- /warmup_scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ildoonet/pytorch-gradual-warmup-lr/HEAD/warmup_scheduler/scheduler.py --------------------------------------------------------------------------------