Training code of three variants of ResNet on ImageNet:
- imagenet-resnet.py: Original ResNet and Pre-activation ResNet.
- imagenet-resnet-se.py: Squeeze-and-Excitation ResNet
The training mostly follows the setup in fb.resnet.torch and gets similar performance (with much fewer lines of code). Models can be downloaded here.
Model | Top 5 Error | Top 1 Error |
---|---|---|
ResNet18 | 10.50% | 29.66% |
ResNet34 | 8.56% | 26.17% |
ResNet50 | 6.85% | 23.61% |
ResNet50-SE | 6.24% | 22.64% |
ResNet101 | 6.04% | 21.95% |
To train, just run:
./imagenet-resnet.py --data /path/to/original/ILSVRC --gpu 0,1,2,3 -d 50
You should be able to see good GPU utilization (around 95%), if your data is fast enough. See the tutorial on how to speed up your data.
This script only converts and runs ImageNet-ResNet{50,101,152} Caffe models released by Kaiming.
Note that the architecture is different from the imagenet-resnet.py
script and the models are not compatible.
Usage:
# download and convert caffe model to npy format
python -m tensorpack.utils.loadcaffe PATH/TO/{ResNet-101-deploy.prototxt,ResNet-101-model.caffemodel} ResNet101.npy
# run on an image
./load-resnet.py --load ResNet-101.npy --input cat.jpg --depth 101
The converted models are verified on ILSVRC12 validation set. The per-pixel mean used here is slightly different from the original.
Model | Top 5 Error | Top 1 Error |
---|---|---|
ResNet 50 | 7.89% | 25.03% |
ResNet 101 | 7.16% | 23.74% |
ResNet 152 | 6.81% | 23.28% |
Reproduce pre-activation ResNet on CIFAR10.
Also see a DenseNet implementation of the paper Densely Connected Convolutional Networks.