当前位置:网站首页>PaddleX部署推理模型和GUI界面测试结果不一致的解决方法
PaddleX部署推理模型和GUI界面测试结果不一致的解决方法
2022-08-01 05:01:00 【我本逍遥Kurt】
问题描述:
近期在用PaddleX做目标检测,用到FasterRCNN的时候,导出的inference_model部署到windows本地计算出的结果有误。
以下是模型部署的代码
model = pdx.deploy.Predictor('F:\panyutong\PaddleX\model\model5\inference_model
\inference_model')
image_name = 'F:\panyutong\LG\\test\\test\IMAGES\\1404.jpg'
predicts = model.predict(image_name)
predicts测试和输出结果有误:
1.坐标为负
2.置信度大于1
3.预测的类别超出了自己的label个数
解决方法:
使用GPU预测结果是正确的,修改代码为
model = pdx.deploy.Predictor('F:\panyutong\PaddleX\model\model5\inference_model
\inference_model',use_gpu=True)
image_name = 'F:\panyutong\LG\\test\\test\IMAGES\\1404.jpg'
predicts = model.predict(image_name)
新的问题:
使用GPU后报错:进程已结束,退出代码-1073740791 (0xC0000409)
解决方法:
我用的是pycharm,选择编辑配置,勾选模拟输出控制台(这里引用了其他博客的截图)
这样就可以把错误信息输出:
Could not locate zlibwapi.dll. Please make sure it is in your library path
原来是缺少一些资源
链接:https://pan.baidu.com/s/1JE4D5NQ0MfRkZdAEVQZHVQ
提取码:t4uv
lib文件放到C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.1\lib
dll文件放到C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.1\bin
参考博客:资源获取
添加后再次运行程序,结果正确!
边栏推荐
- pytroch、tensorflow对比学习—搭建模型范式(低阶、中阶、高阶API示例)
- PMP子过程定义总结
- typescript26-字面量类型
- 罗技鼠标体验记录
- Excel record of integer programming optimization model to solve the problem
- (more than 2022 cattle school four) A - Task Computing + dynamic programming (sort)
- typescript23-tuple
- PMP 80个输入输出总结
- Lawyer Interpretation | Guns or Roses?Talking about Metaverse Interoperability from the Battle of Big Manufacturers
- 风险策略调优中重要的三步分析法
猜你喜欢
Mysql基础篇(约束)
高数 | 【重积分】线面积分880例题
MySQL-数据定义语言-DDLdatebase define language
[target detection] YOLOv7 theoretical introduction + practical test
pytorch、tensorflow对比学习—计算图和微分机制
剑指 Offer 68 - I. 二叉搜索树的最近公共祖先
typescript25 - type assertion
基于Arduino制作非接触式测温仪
律师解读 | 枪炮还是玫瑰?从大厂之争谈元宇宙互操作性
pytroch、tensorflow对比学习—使用GPU训练模型
随机推荐
Selenium:上传、下载文件
在沈自所的半年总结
「以云为核,无感极速」顶象第五代验证码
请问shake数据库中想把源的db0的数据同步到目的db5,参数怎么设置呢?
Optional parameters typescript19 - object
报错:AttributeError: module ‘matplotlib’ has no attribute ‘figure’
(2022牛客多校四)K-NIO‘s Sword(思维)
USB3.0:VL817Q7-C0的LAYOUT指南(二)
Selenium:元素等待
Typescript20 - interface
(Codeforce 757) E. Bash Plays with Functions
(2022 Niu Ke Duo School IV) K-NIO's Sword (Thinking)
PMP 相关方管理必背总结
LeetCode 231. 2 的幂
状态压缩dp
(2022 Niu Ke Duo School IV) N-Particle Arts (Thinking)
PAT乙级 1002 写出这个数
The method of solving stored procedure table name passing through variable in mysql
博客系统(完整版)
【云原生之kubernetes实战】kubernetes集群的检测工具——popeye