├── .gitignore ├── LICENSE ├── README.md ├── models ├── __init__.py ├── preresnet.py ├── vgg.py └── wide_resnet.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/preresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/models/preresnet.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/models/wide_resnet.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timgaripov/swa/HEAD/utils.py --------------------------------------------------------------------------------