Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 805 Bytes

resnet34_cn.rst

File metadata and controls

34 lines (23 loc) · 805 Bytes

resnet34

参数

  • pretrained (bool,可选) - 是否加载在imagenet数据集上的预训练权重。默认值:False。

返回

resnet34模型,Layer的实例。

代码示例

import paddle
from paddle.vision.models import resnet34

# build model
model = resnet34()

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

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

print(out.shape)