├── .gitignore ├── Images ├── CLR.png ├── RawLoss.png ├── SGDR.png └── SmoothLoss.png ├── Learning Rate.ipynb ├── README.md └── lr_utils ├── keras_CLR.py ├── keras_SGDR.py └── keras_lr_finder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/CLR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/Images/CLR.png -------------------------------------------------------------------------------- /Images/RawLoss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/Images/RawLoss.png -------------------------------------------------------------------------------- /Images/SGDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/Images/SGDR.png -------------------------------------------------------------------------------- /Images/SmoothLoss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/Images/SmoothLoss.png -------------------------------------------------------------------------------- /Learning Rate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/Learning Rate.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/README.md -------------------------------------------------------------------------------- /lr_utils/keras_CLR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/lr_utils/keras_CLR.py -------------------------------------------------------------------------------- /lr_utils/keras_SGDR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/lr_utils/keras_SGDR.py -------------------------------------------------------------------------------- /lr_utils/keras_lr_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrul/Learning-Rate/HEAD/lr_utils/keras_lr_finder.py --------------------------------------------------------------------------------