VGG

class paddle.vision.models.VGG ( features, num_classes=1000 ) [源代码]

VGG模型,来自论文 “Very Deep Convolutional Networks For Large-Scale Image Recognition”

参数

  • features (Layer) - vgg模型的特征层。由函数make_layers产生。

  • num_classes (int, 可选) - 最后一个全连接层输出的维度。如果该值小于等于0,则不定义最后一个全连接层。默认值:1000。

  • with_pool (bool,可选): - 是否在最后三个全连接层前使用池化. 默认值: True.

返回

vgg模型,Layer的实例。

代码示例

  1. import paddle
  2. from paddle.vision.models import VGG
  3. from paddle.vision.models.vgg import make_layers
  4. vgg11_cfg = [64, 'M', 128, 'M', 256, 256, 'M', 512, 512, 'M', 512, 512, 'M']
  5. features = make_layers(vgg11_cfg)
  6. vgg11 = VGG(features)
  7. x = paddle.rand([1, 3, 224, 224])
  8. out = vgg11(x)
  9. print(out.shape)