[Deprecated] No longer maintained (to catch up with the latest keras/theano/tensorflow but you'll get the idea of how to implement stochastic depth)
Keras implementation for "Deep Networks with Stochastic Depth" http://arxiv.org/abs/1603.09382
Original code(in lua/torch) is at https://github.com/yueatsprograms/Stochastic_Depth.
$ cd keras
$ git checkout keras-1
$ python setup.py install
- Just run
python train.py
- Error related to maximum recursion depth
- When the network is deep, there happens error saying it reaches to maximum recursion depth.
- You can resolve this issue by using
sys.setrecursionlimit(max_recursion_depth)
. You should increasemax_recursion_depth
until you get no error (Increasing this value might cause segmentation fault if you don't have enough memory).
CIFAR10
- Number of layers == 50
- (other configs are same as
train.py
)