paddleX预训练模型怎么使用

fxnxkyjh  于 2022-11-19  发布在  其他
关注(0)|答案(2)|浏览(245)

请提出你的问题 Please ask your question

您好,我在进行用paddlex进行模型训练时,总会报警告,yolo_head.yolo_output.0.weight is not in pretrained model...
然后在output文件夹里有一个pretrain文件夹,里面有模型权重文件,我想问一下这个警告的意思是什么?这个权重文件的意义是什么?还有paddlex如何使用预训练模型?
这是我的项目链接: https://aistudio.baidu.com/aistudio/projectdetail/4441826

afdcj2ne

afdcj2ne1#

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看 官网API文档常见问题历史IssueAI社区 来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

hts6caw3

hts6caw32#

yolo_head.yolo_output.0.weight is not in pretrained model 表明这层权重在你加载的预训练权重里没有。
pretrain文件里放的是下载的预训练模型参数。
paddlex使用预训练模型,在train()函数的接口里面指定pretrain_weights=本地下载好的权重路径或下载链接 即可,具体可以看下 https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/apis/models/detection.md#train
代码在:https://github.com/PaddlePaddle/PaddleX/blob/develop/paddlex/cv/models/detector.py#L196

相关问题