├── .gitignore ├── LICENSE ├── README.md ├── densenet ├── model.py ├── train.py └── utils.py ├── enas ├── child.py ├── controller.py ├── cosine_optim.py ├── train.py └── train_final.py ├── pyramidnet ├── model.py └── train.py ├── resnet ├── model.py └── train.py ├── shake_drop ├── cosine_optim.py ├── model.py ├── train.py └── utils.py ├── shake_shake ├── cosine_optim.py ├── model.py ├── train.py └── utils.py └── wide_resnet ├── model.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | __pycache__/ 3 | *.pth 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/README.md -------------------------------------------------------------------------------- /densenet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/densenet/model.py -------------------------------------------------------------------------------- /densenet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/densenet/train.py -------------------------------------------------------------------------------- /densenet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/densenet/utils.py -------------------------------------------------------------------------------- /enas/child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/enas/child.py -------------------------------------------------------------------------------- /enas/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/enas/controller.py -------------------------------------------------------------------------------- /enas/cosine_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/enas/cosine_optim.py -------------------------------------------------------------------------------- /enas/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/enas/train.py -------------------------------------------------------------------------------- /enas/train_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/enas/train_final.py -------------------------------------------------------------------------------- /pyramidnet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/pyramidnet/model.py -------------------------------------------------------------------------------- /pyramidnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/pyramidnet/train.py -------------------------------------------------------------------------------- /resnet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/resnet/model.py -------------------------------------------------------------------------------- /resnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/resnet/train.py -------------------------------------------------------------------------------- /shake_drop/cosine_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_drop/cosine_optim.py -------------------------------------------------------------------------------- /shake_drop/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_drop/model.py -------------------------------------------------------------------------------- /shake_drop/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_drop/train.py -------------------------------------------------------------------------------- /shake_drop/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_drop/utils.py -------------------------------------------------------------------------------- /shake_shake/cosine_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_shake/cosine_optim.py -------------------------------------------------------------------------------- /shake_shake/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_shake/model.py -------------------------------------------------------------------------------- /shake_shake/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_shake/train.py -------------------------------------------------------------------------------- /shake_shake/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/shake_shake/utils.py -------------------------------------------------------------------------------- /wide_resnet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/wide_resnet/model.py -------------------------------------------------------------------------------- /wide_resnet/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wide_resnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/wide_resnet/train.py -------------------------------------------------------------------------------- /wide_resnet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnddnjs/pytorch-cifar10/HEAD/wide_resnet/utils.py --------------------------------------------------------------------------------