简介
VGG-Net是2014年ILSVRC classification第二名,top-5 错误率7.32%(第一名是GoogLeNet),ILSVRC localization 第一名。VGG-Net是由牛津大学视觉几何小组(Visual Geometry Group, VGG)提出,因此得名.
基本信息
论文 Very deep convolutional networks for large-scale image recognition
paper :https://arxiv.org/pdf/1409.1556.pdf
作者 Simonyan, Karen, and Andrew Zisserman
发表于 2015年 ICLR(International Conference On Learning Representations,)
翻译 http://www.aiqianji.com/blog/article/31
创新点
用简洁的方法设计了深层网络,所有 convolutional layer 使用同样大小的 convolutional filter,大小为 3 x 3
网络结构
VGG-Net 有五个stage,VGG-11 VGG-13 VGG-16 VGG-19
VGG的网络结构 分为五个stage, 不同层数的VGG,每个stage中的卷积层数目不同。
以VGG-16为例
网络层 | 输入尺寸 | 核尺寸 | 输出尺寸 | 参数个数 |
---|---|---|---|---|
卷积层$C_{11}$ | $224\times224\times3$ | $3\times3\times64/1$ | $224\times224\times64$ | $(3\times3\times3+1)\times64$ |
卷积层$C_{12}$ | $224\times224\times64$ | $3\times3\times64/1$ | $224\times224\times64$ | $(3\times3\times64+1)\times64$ |
下采样层$S_{1}$ | $224\times224\times64$ | $2\times2/2$ | $112\times112\times64$ | $0$ |
卷积层$C_{21}$ | $112\times112\times64$ | $3\times3\times128/1$ | $112\times112\times128$ | $(3\times3\times64+1)\times128$ |
卷积层$C_{22}$ | $112\times112\times128$ | $3\times3\times128/1$ | $112\times112\times128$ | $(3\times3\times128+1)\times128$ |
下采样层$S_{2}$ | $112\times112\times128$ | $2\times2/2$ | $56\times56\times128$ | $0$ |
卷积层$C_{31}$ | $56\times56\times128$ | $3\times3\times256/1$ | $56\times56\times256$ | $(3\times3\times128+1)\times256$ |
卷积层$C_{32}$ | $56\times56\times256$ | $3\times3\times256/1$ | $56\times56\times256$ | $(3\times3\times256+1)\times256$ |
卷积层$C_{33}$ | $56\times56\times256$ | $3\times3\times256/1$ | $56\times56\times256$ | $(3\times3\times256+1)\times256$ |
下采样层$S_{3}$ | $56\times56\times256$ | $2\times2/2$ | $28\times28\times256$ | $0$ |
卷积层$C_{41}$ | $28\times28\times256$ | $3\times3\times512/1$ | $28\times28\times512$ | $(3\times3\times256+1)\times512$ |
卷积层$C_{42}$ | $28\times28\times512$ | $3\times3\times512/1$ | $28\times28\times512$ | $(3\times3\times512+1)\times512$ |
卷积层$C_{43}$ | $28\times28\times512$ | $3\times3\times512/1$ | $28\times28\times512$ | $(3\times3\times512+1)\times512$ |
下采样层$S_{4}$ | $28\times28\times512$ | $2\times2/2$ | $14\times14\times512$ | $0$ |
卷积层$C_{51}$ | $14\times14\times512$ | $3\times3\times512/1$ | $14\times14\times512$ | $(3\times3\times512+1)\times512$ |
卷积层$C_{52}$ | $14\times14\times512$ | $3\times3\times512/1$ | $14\times14\times512$ | $(3\times3\times512+1)\times512$ |
卷积层$C_{53}$ | $14\times14\times512$ | $3\times3\times512/1$ | $14\times1 |