├── .gitignore ├── LICENSE ├── README.md ├── lr_schedules.png ├── setup.cfg ├── setup.py ├── swa ├── __init__.py ├── callback.py ├── keras.py └── tfkeras.py └── swa_illustration.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/README.md -------------------------------------------------------------------------------- /lr_schedules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/lr_schedules.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/setup.py -------------------------------------------------------------------------------- /swa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/swa/__init__.py -------------------------------------------------------------------------------- /swa/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/swa/callback.py -------------------------------------------------------------------------------- /swa/keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/swa/keras.py -------------------------------------------------------------------------------- /swa/tfkeras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/swa/tfkeras.py -------------------------------------------------------------------------------- /swa_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-larsson/keras-swa/HEAD/swa_illustration.png --------------------------------------------------------------------------------