地址链接:https://www.flyai.com/m/mbv3_large.old.pth.tar
查看来源:https://github.com/xiaolai-sqlai/mobilenetv3
确定自己使用的框架并导入对应的库。导入库实现样例代码可参考 文档中心-预训练模型使用教程
在代码中实现加载预训练模型地址
model = torch.load("mbv3_large.old.pth.tar", map_location='cpu')
weight = model["state_dict"]