Skip to content

nutszebra/residual_net

Repository files navigation

What's this

Implementation of Residual Networks (ResNet) by chainer

Dependencies

git clone https://github.com/nutszebra/residual_net.git
cd residual_net
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 data-augmentation.

  • Data augmentation
    Train: Pictures are randomly resized in the range of [32, 36], then 32x32 patches are extracted randomly and are normalized locally. Horizontal flipping is applied with 0.5 probability.
    Test: Pictures are resized to 32x32, then they are normalized locally. Single image test is used to calculate total accuracy.

Cifar10 result

network depth total accuracy (%)
ResNet [1] 164 94.54
my implementation 164 94.39
ResNet [1] 1001 95.08

loss

total accuracy

References

Identity Mappings in Deep Residual Networks [1]

About

Implementation of Residual Networks (ResNet) by chainer (Identity Mappings in Deep Residual Networks: https://arxiv.org/abs/1603.05027)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages