├── .gitignore ├── README.md ├── conf ├── __init__.py └── global_settings.py ├── dataset.py ├── lr_finder.py ├── models ├── attention.py ├── densenet.py ├── googlenet.py ├── inceptionv3.py ├── inceptionv4.py ├── mobilenet.py ├── mobilenetv2.py ├── nasnet.py ├── preactresnet.py ├── resnet.py ├── resnext.py ├── rir.py ├── senet.py ├── shufflenet.py ├── shufflenetv2.py ├── squeezenet.py ├── stochasticdepth.py ├── vgg.py ├── wideresidual.py └── xception.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | data 3 | checkpoint 4 | runs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/README.md -------------------------------------------------------------------------------- /conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/conf/__init__.py -------------------------------------------------------------------------------- /conf/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/conf/global_settings.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/dataset.py -------------------------------------------------------------------------------- /lr_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/lr_finder.py -------------------------------------------------------------------------------- /models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/attention.py -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/inceptionv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/inceptionv3.py -------------------------------------------------------------------------------- /models/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/inceptionv4.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/nasnet.py -------------------------------------------------------------------------------- /models/preactresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/preactresnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/rir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/rir.py -------------------------------------------------------------------------------- /models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/senet.py -------------------------------------------------------------------------------- /models/shufflenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/shufflenet.py -------------------------------------------------------------------------------- /models/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/shufflenetv2.py -------------------------------------------------------------------------------- /models/squeezenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/squeezenet.py -------------------------------------------------------------------------------- /models/stochasticdepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/stochasticdepth.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wideresidual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/wideresidual.py -------------------------------------------------------------------------------- /models/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/models/xception.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiaicunzai/pytorch-cifar100/HEAD/utils.py --------------------------------------------------------------------------------