Home

Awesome

What's this

Implementation of Residual Networks In Residual Networks by chainer

Dependencies

git clone https://github.com/nutszebra/resnet_in_resnet.git
cd resnet_in_resnet
git submodule init
git submodule update

How to run

python main.py -p ./ -g 0 

Details about my implementation

All hyperparameters and network architecture are the same as in [1] except for some parts.

Cifar10 result

networktotal accuracy (%)
18-layer + wide RiR94.99
my implementation94.43
<img src="https://github.com/nutszebra/resnet_in_resnet/blob/master/loss.jpg" alt="loss" title="loss"> <img src="https://github.com/nutszebra/resnet_in_resnet/blob/master/accuracy.jpg" alt="total accuracy" title="total accuracy">

Reference

Resnet in Resnet: Generalizing Residual Architectures [1]