shufflenet_v2_x0_33

paddle.vision.models. shufflenet_v2_x0_33 ( pretrained=False, **kwargs ) [source]

ShuffleNetV2 with 0.33x output channels, as described in “ShuffleNet V2: Practical Guidelines for Ecient CNN Architecture Design”.

Parameters
  • pretrained (bool, optional) – Whether to load pre-trained weights. If True, returns a model pre-trained on ImageNet. Default: False.

  • **kwargs (optional) – Additional keyword arguments. For details, please refer to ShuffleNetV2.

Returns

Layer. An instance of ShuffleNetV2 with 0.33x output channels.

Examples

>>> import paddle
>>> from paddle.vision.models import shufflenet_v2_x0_33

>>> # build model
>>> model = shufflenet_v2_x0_33()

>>> # build model and load imagenet pretrained weight
>>> # model = shufflenet_v2_x0_33(pretrained=True)

>>> x = paddle.rand([1, 3, 224, 224])
>>> out = model(x)

>>> print(out.shape)
[1, 1000]