mindspore报错“ValueError: The checkpoint file does not exist.”

尝试用Mindspore去运行res2net_yolov3,使用模型代码models: Models of MindSpore - Gitee.com作为参考。

数据集采用coco2014,当我运行train.py时,会出现以下错误

mindspore报错“ValueError: The checkpoint file does not exist.”_第1张图片

桶内结构如下:

mindspore报错“ValueError: The checkpoint file does not exist.”_第2张图片

其中default_config.yaml文件设置如下:

mindspore报错“ValueError: The checkpoint file does not exist.”_第3张图片

算法配置如下:

mindspore报错“ValueError: The checkpoint file does not exist.”_第4张图片

训练配置如下:

mindspore报错“ValueError: The checkpoint file does not exist.”_第5张图片

不知道怎样解决,希望得到帮助!

pretrained_backbone: "/cache/checkpoint_path/0-148_92000.ckpt" 这个默认参数需要指定,上面执行失败是因为没有找到对应ckpt文件,如果跑的是resnet18可以到mindspore hub官网[url]https://www.mindspore.cn/resources/hub[/url]上[url]https://www.mindspore.cn/resources/hub/details?MindSpore/1.6/yolov3resnet18_coco2017[/url]上下载对应的ckpt,可以把这个地址填入上面的checkpoint_url试试, 如果是更大的模型官网暂时没有提供,那就需要从0训练,那就把yaml中pretrained_backbone参数设置为空“”

你可能感兴趣的:(人工智能,python,深度学习)