vgg11¶
- paddle.vision.models. vgg11 ( pretrained=False, batch_norm=False, **kwargs ) [source]
-
VGG 11-layer model from “Very Deep Convolutional Networks For Large-Scale Image Recognition”.
- Parameters
-
pretrained (bool, optional) – Whether to load pre-trained weights. If True, returns a model pre-trained on ImageNet. Default: False.
batch_norm (bool, optional) – If True, returns a model with batch_norm layer. Default: False.
**kwargs (optional) – Additional keyword arguments. For details, please refer to VGG.
- Returns
-
Layer. An instance of VGG 11-layer model.
Examples
import paddle from paddle.vision.models import vgg11 # build model model = vgg11() # build vgg11 model with batch_norm model = vgg11(batch_norm=True) x = paddle.rand([1, 3, 224, 224]) out = model(x) print(out.shape) # [1, 1000]