You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains simple pytorch version of LeNet-5(MNIST), ResNet(CIFAR, ImageNet), AlexNet(ImageNet), VGG-16(CIFAR, ImageNet) baselines.
There are both nn.DataParallel and nn.parallel.DistributedDataParallel version for multi GPU training, I highly recommand using nn.parallel.DistributedDataParallel since it's considerably faster than using nn.DataParallel.
Requirements:
python>=3.5
pytorch>=0.4.1(>=1.1.0 for DistributedDataParallel version)
tensorboardX(optional)
Train
single GPU or multi GPU using nn.DataParallel
python mnist_train_eval.py
python cifar_train_eval.py
python imgnet_train_eval.py
multi GPU using nn.parallel.DistributedDataParallel