Implementation by Chainer. Original paper is Deep Networks with Stochastic Depth.
This repository includes network definition scripts only.
If you want to train ResDrop from scratch, see chainer sample code.
- Chainer 1.5+ (Neural network framework)
In python script, write:
from ResDrop152 import ResNet
model = ResNet()
About 25% faster per iteration than ResNet with no layer drop.
I trained ResNet101 with layer drop and ResNet101 with no layer drop for PASCAL VOC Action dataset. ResNet with layer drop improved the accuracy of test results about 4%.