mmpretrain/configs/vgg
mzr1996 d90dfc3d99 [Docs] Use relative link to config instead of abs link in README. 2022-09-22 09:59:06 +08:00
..
README.md [Docs] Use relative link to config instead of abs link in README. 2022-09-22 09:59:06 +08:00
metafile.yml [Improvement] Rename config files according to the config name standard. (#508) 2021-11-19 14:20:35 +08:00
vgg11_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg11bn_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg13_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg13bn_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg16_8xb16_voc.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg16_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg16bn_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg19_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00
vgg19bn_8xb32_in1k.py Update auto_scale_lr fields 2022-07-18 11:11:13 +08:00

README.md

VGG

Very Deep Convolutional Networks for Large-Scale Image Recognition

Abstract

In this work we investigate the effect of the convolutional network depth on its accuracy in the large-scale image recognition setting. Our main contribution is a thorough evaluation of networks of increasing depth using an architecture with very small (3x3) convolution filters, which shows that a significant improvement on the prior-art configurations can be achieved by pushing the depth to 16-19 weight layers. These findings were the basis of our ImageNet Challenge 2014 submission, where our team secured the first and the second places in the localisation and classification tracks respectively. We also show that our representations generalise well to other datasets, where they achieve state-of-the-art results. We have made our two best-performing ConvNet models publicly available to facilitate further research on the use of deep visual representations in computer vision.

Results and models

ImageNet-1k

Model Params(M) Flops(G) Top-1 (%) Top-5 (%) Config Download
VGG-11 132.86 7.63 68.75 88.87 config model | log
VGG-13 133.05 11.34 70.02 89.46 config model | log
VGG-16 138.36 15.5 71.62 90.49 config model | log
VGG-19 143.67 19.67 72.41 90.80 config model | log
VGG-11-BN 132.87 7.64 70.67 90.16 config model | log
VGG-13-BN 133.05 11.36 72.12 90.66 config model | log
VGG-16-BN 138.37 15.53 73.74 91.66 config model | log
VGG-19-BN 143.68 19.7 74.68 92.27 config model | log

Citation

@article{simonyan2014very,
  title={Very deep convolutional networks for large-scale image recognition},
  author={Simonyan, Karen and Zisserman, Andrew},
  journal={arXiv preprint arXiv:1409.1556},
  year={2014}
}