├── .gitignore ├── README.md ├── models ├── __init__.py ├── resnet.py └── vgg.py ├── train_cifar10.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/models/vgg.py -------------------------------------------------------------------------------- /train_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/train_cifar10.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentaroy47/pytorch-mgpu-cifar10/HEAD/utils.py --------------------------------------------------------------------------------