Skip to content

nutszebra/vgg

Repository files navigation

What's this

Implementation of VGG-A by chainer

Dependencies

git clone https://github.com/nutszebra/vgg.git
cd vgg
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 [256, 512], then 224x224 patches are extracted randomly and are normalized locally. Horizontal flipping is applied with 0.5 probability.
    Test: Pictures are resized to 384x384, then they are normalized locally. Single image test is used to calculate total accuracy.

Cifar10 result

network depth total accuracy (%)
my implementation 11 92.1

loss

total accuracy

References

Very Deep Convolutional Networks for Large-Scale Image Recognition [1]

About

Implementation of VGG by chainer (Very Deep Convolutional Networks for Large-Scale Image Recognition: https://arxiv.org/abs/1409.1556)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages