Home

Awesome

What's this

Implementation of GoogLeNet by chainer

Dependencies

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

How to run

python main.py -p ./ -g 0 

Details about my implementation

Cifar10 result

networkdepthtotal accuracy (%)
my implementation2291.33
<img src="https://github.com/nutszebra/googlenet/blob/master/loss.jpg" alt="loss" title="loss"> <img src="https://github.com/nutszebra/googlenet/blob/master/accuracy.jpg" alt="total accuracy" title="total accuracy">

References

Going Deeper with Convolutions [[1]][Paper]
Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift [[2]][Paper2]
Rethinking the Inception Architecture for Computer Vision [[3]][Paper3]
[paper]: https://arxiv.org/abs/1409.4842 "Paper" [paper2]: https://arxiv.org/abs/1502.03167 "Paper2" [paper3]: https://arxiv.org/abs/1512.00567 "Paper3"