Trained by facebook using https://github.com/facebook/fb.resnet.torch
The model was converted to nn
backend and BatchNorm folded into convolutional layers with this script
https://github.com/szagoruyko/imagine-nn/blob/utils/utils.lua
gradWeight
and gradBias
were removed from convolutional layers.
top-1 central crop accuracy: 72.94%
Download link: https://www.dropbox.com/s/1pvw1xa5726iqe9/resnet-34-export.t7 (84MB)
Separate mean std per channel is saved with the network:
> print(net.transform)
{
mean :
{
1 : 0.48462227599918
2 : 0.45624044862054
3 : 0.40588363755159
}
std :
{
1 : 0.22889466674951
2 : 0.22446679341259
3 : 0.22495548344775
}
}
Can be loaded without CUDA support.
Does this conversion tool only support ResNet and Inception models? Or does it also support AlexNet?