├── .gitignore ├── LICENSE ├── README.md ├── cifar10 ├── cifar-10.jpg └── log.txt ├── cifar100 ├── cifar-100.jpg └── log.txt ├── models ├── __init__.py └── model.py ├── test.py ├── train.py └── utils └── plot_log.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /cifar10/cifar-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/cifar10/cifar-10.jpg -------------------------------------------------------------------------------- /cifar10/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/cifar10/log.txt -------------------------------------------------------------------------------- /cifar100/cifar-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/cifar100/cifar-100.jpg -------------------------------------------------------------------------------- /cifar100/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/cifar100/log.txt -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/models/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils/plot_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prlz77/ResNeXt.pytorch/HEAD/utils/plot_log.py --------------------------------------------------------------------------------