inception_v3¶
Inception v3 模型,来自论文 "Rethinking the Inception Architecture for Computer Vision" 。
参数¶
pretrained (bool,可选) - 是否加载预训练权重。如果为 True,则返回在 ImageNet 上预训练的模型。默认值为 False。
**kwargs (可选) - 附加的关键字参数,具体可选参数请参见 InceptionV3。
代码示例¶
>>> import paddle
>>> from paddle.vision.models import inception_v3
>>> # Build model
>>> model = inception_v3()
>>> # Build model and load imagenet pretrained weight
>>> # model = inception_v3(pretrained=True)
>>> x = paddle.rand([1, 3, 299, 299])
>>> out = model(x)
>>> print(out.shape)
[1, 1000]