-
Notifications
You must be signed in to change notification settings - Fork 7.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
训练模型导出 缺少inference.pdmodel and inference.pdiparams.info #14242
Comments
paddle框架先安装paddle 3.0 beta 1吧 |
好的, 我試試 |
环境:ubuntu22+cuda12.4 |
安裝Paddle 3.0 Beta1之後 同样的问题 脚本导出沒有.pdmodel 和 .pdiparams.info @GreatV |
现在使用main分支可以直接用了@felixho789 |
不管是json pdmodel都兼容 |
我想用openvino读pdmodel,读json和pdmodel是等效的吗? |
openvino 不太确定,paddle inference是可以的 |
好的, 一旦我回去我再試試, 谢谢你 |
很遗憾目前并不能用,不管是直接读取json还是改名为.pdmodel都不行,看来已经不兼容了。 |
@rainote2020 我反馈一下 |
另外,切换到beta1以后要重新运行导出脚本 |
感谢,顺便附上我的操作代码:
|
我实测回滚到beta1之后导出是正常有pdmodel的。把pip命令里b2改成b1就行,可以检查一下pip list看看你回退版本是否成功了。 |
@rainote2020 你的PaddleOCR版本是什么? |
我先安装的paddle,没有paddleX,原本是b2,使用的是官网给出的pip安装方式。https://www.paddlepaddle.org.cn/install/quick?docurl=/documentation/docs/zh/develop/install/pip/linux-pip.html
|
@felixho789 如果是使用paddlex遇到的问题建议在paddlex仓库issues区提,这样能获得更专业的回答。另外我上面指的是paddle框架的版本。 |
@GreatV @rainote2020 |
🔎 Search before asking
🐛 Bug (问题描述)
自己再训练的训练模型export_model.py导出 缺少inference.pdmodel and inference.pdiparams.info
只有inference.yml inference.json inference.pdiparams
用的是Paddle OCR 2.9, 成功训练了以下2个模型. 用infer_rec可以成功.
但是训练模型export_model.py导出 就出不了pdmodel 和pdiparams.info
检测模型
ch_PP-OCRv4_server_det 训练模型
识别模型
en_PP-OCRv4_rec 训练模型
Code used to export:
python tools/export_model.py -c configs/det/ch_PP-OCRv4_det_teacher.yml -o Global.pretrained_model="output/ch_PP-OCRv4/best_model/model" Global.save_inference_dir="output/det_db_inference/"
🏃♂️ Environment (运行环境)
Window 11 Python 3.10
PaddleOCR 2.9
🌰 Minimal Reproducible Example (最小可复现问题的Demo)
python tools/export_model.py -c configs/det/ch_PP-OCRv4_det_teacher.yml -o Global.pretrained_model="output/ch_PP-OCRv4/best_model/model" Global.save_inference_dir="output/det_db_inference/"
The text was updated successfully, but these errors were encountered: