InceptionV3¶
- class paddle.vision.models. InceptionV3 ( num_classes=1000, with_pool=True ) [源代码] ¶
-
InceptionV3模型,来自论文 "Rethinking the Inception Architecture for Computer Vision" 。
参数¶
num_classes (int, 可选) - 最后一个全连接层输出的维度。如果该值小于0,则不定义最后一个全连接层。默认值:1000。
with_pool (bool,可选) - 是否定义最后一个全连接层之前的池化层。默认值:True。
返回¶
InceptionV3模型,Layer的实例。
代码示例¶
import paddle
from paddle.vision.models import InceptionV3
inception_v3 = InceptionV3()
x = paddle.rand([1, 3, 299, 299])
out = inception_v3(x)
print(out.shape)