adv-efficientnet-b6-ac80338e.pth
PyTorch EfficientNet
在线加载模型地址

确定自己使用的框架并导入对应的库。导入库实现样例代码可参考 文档中心-预训练模型使用教程

在代码中实现加载预训练模型地址

调用模型的实现方法
from efficientnet_pytorch import EfficientNet
import torch

model = EfficientNet.from_name("efficientnet-b6")
from flyai.utils import remote_helper

path=remote_helper.get_remote_date("https://www.flyai.com/m/adv-efficientnet-b6-ac80338e.pth")

load_fc = False
state_dict = torch.load(path)
if load_fc:
    model.load_state_dict(state_dict)
else:
    state_dict.pop('_fc.weight')
    state_dict.pop('_fc.bias')
    res = model.load_state_dict(state_dict, strict=False)
    assert set(res.missing_keys) == set(['_fc.weight', '_fc.bias']), 'issue loading pretrained weights'

立刻学会使用预训练模型!

查看不同深度学习框架下使用预训练模型的样例代码