resnest101-966fb78c.pth
PyTorch ResNeSt
在线加载模型地址

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

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

调用模型的实现方法

# ImageNet预训练模型# 使用参考 https://hangzhang.org/PyTorch-Encoding/model_zoo/imagenet.html 

# 下载路径参考 https://github.com/zhanghang1989/PyTorch-Encoding/blob/master/encoding/models/model_store.py 

 # 必须使用该方法下载模型,然后加载

from flyai.utils import remote_helper 

path = remote_helper.get_remote_date('https://www.flyai.com/m/resnest101-966fb78c.pth') 

 # 命令行运行 git clone https://github.com/zhanghang1989/PyTorch-Encoding 

model = encoding.models.get_model('ResNeSt101', pretrained=False) 

model.load_state_dict(torch.load(path))