-
Notifications
You must be signed in to change notification settings - Fork 412
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
YOLOv5-Lite (onnx)(v1.5版本 5月22日) 类似报错:1.ValueError: operands could not be broadcast together with shapes (3,2,80,85) (19200,2) 2. IndexError: index 4 is out of bounds for axis 0 with size 3 #263
Comments
Get it,thinks! |
我是在导出onnx的时候,添加了 --grid参数,就可以用了 |
thanks!! |
1.5版本使用--concat导出onnx就可以用那个摄像头的demo了 |
1.5版本使用--concat导出onnx 。还有一点不一样,之前的输出节点名称是output,现在添加 --concat 的形式,节点名称是outputs,如果之前写的推理程序,解析输出用的是节点名称的话,就会找不到output。建议统一。 |
衷心感谢,瞎忙活一天。 |
你好,这个dog.names是什么文件? |
里面是填你训练的图片的label名称的,比如说训练时标签名填的person,里面就填person,我暂时没发现这个名称有什么特别含义,应该只是个文件名?
***@***.***
…------------------ 原始邮件 ------------------
发件人: ***@***.***>;
发送时间: 2024年11月6日(星期三) 晚上10:07
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [ppogg/YOLOv5-Lite] YOLOv5-Lite (onnx)(v1.5版本 5月22日) 类似报错:1.ValueError: operands could not be broadcast together with shapes (3,2,80,85) (19200,2) 2. IndexError: index 4 is out of bounds for axis 0 with size 3 (Issue #263)
你好,这个dog.names是什么文件?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
好的,谢谢 |
你好,这个dog.names多个标签该怎么写,怎么对应,我分开写只能显示一个,写在那一行的内容又都会显示 |
报错流程:
1. 使用 YOLOv5-Lite 中 train.py 训练了一个 best.pt
2. 在 export.py 中转换为 best.onnx 模型
3. (第一种报错)使用 python_demo/onnxruntime/v5lite.py 进行推理,报了以下错误:
原因是 best.onnx 的模型输出不匹配(大家可以使用
https://netron.app/
查看自己训练的模型)/----------------第一种报错的解决方法----------------/
第一步:在
2. 在 export.py 中转换为 best.onnx 模型
这一步中,使用 end2end 导出 :假设 你原本是这样运行 export.py 的
那么使用 end2end 导出就是在后面加上 --end2end 如:
这样你的 best.onnx 的输出格式就正确了,如下图:
第二步:修改 python_demo/onnxruntime/v5lite.py 中的代码:
将其全部复制粘贴到 python_demo/onnxruntime/v5lite.py 中,
修改完各项参数后,就可以进行推理了
运行 v5lite.py 结果如图:
推理之后的图片在 python_demo/onnxruntime/save.jpg
如果你(2024/5/20 之前下载的YOLOv5-Lite)通过以上代码无法解决你的问题,你可以重新下载 YOLOv5-Lite.zip
/-------------------------------------------------------------/
第二种报错如下:
如果你也遇到了这样的报错,那你大概率看过这篇文章:
报错原因:
这篇文章的作者使用的摄像头画面推理程序是改写 当时YOLOv5-Lite 中的代码,时间已经过去很久了,
所以不可以使用现在训练出来的 onnx模型 去跑当时的代码。
/----------------第二种报错的解决方法----------------/
首先要解决第一个报错之后,再解决第二个报错
重新写 摄像头画面推理程序
其实很简单,把现在的 python_demo/onnxruntime/v5lite.py 中的
class yolov5_lite() {...}
的代码粘贴到 原来的摄像头画面推理程序 的代码中,然后再照着v5lite.py改一下 main函数 就好了,非常的简单我在此声明:下面的图片是我识别音游的画面,只是用来学习(因为识别出来的画面感很强),所以不会用于制作外挂。
抵制外挂,从你我做起
以下是改完之后的代码,我不建议复制粘贴直接用,自己也试着写写,你可以的
/-------------------------------------------------------------/
以上就是全部内容了
感谢 YOLOv5-Lite 作者 pogg 的大力帮助,非常感谢。
The text was updated successfully, but these errors were encountered: