-
Notifications
You must be signed in to change notification settings - Fork 9
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
遇到两个问题 #3
Comments
1.请确保你使用的sp的onnx模型与导出方法和我一致 |
您好 vins的解决了 现在就是loop fusion在运行过程中会死掉 目前报错: |
这是不是因为我编译onnx时没有限制max特征点为512导致的后续错误 |
1.看起来你的命令没有问题,尝试使用torch1.13导出onnx模型,或使用cuda11.7导出engine模型,版本不同可能对各算子的处理方式也不同 |
您好,感谢耐心回复。不过我尝试用torch1.13-cu117+onnx1.16导出模型,但是1.13貌似不支持aten::scaled_dot_product_attention,我不明白您是如何在该版本下导出的 |
你是对的,我刚才重新试了一下,发现sp和lg的方法写的有些问题,如果你想自己导出lg,请使用torch2.1,可以正常导出engine。sp可以像LightGlue-ONNX一样使用torch2.0进行导出。为了方便使用,建议直接使用https://github.com/fabio-sim/LightGlue-ONNX/releases 的V0.1.3 中的superpoint_lightglue.onnx 和 superpoint_512.onnx 进行engine的导出 |
您好。我在cuda12.1 pytorch2.1.0+cu121 按照您的方法下载了v0.1.3的两个onnx并且编译了engine,目前是还没有跑rosbag,节点就死了: |
在 trt_infer.cpp 的210行左右有对模型的输入输出的维度绑定,你可以检查一下你导出的模型的各个输入输出的名字是否跟里面写的有所变动 |
好的,我打印输出一下看看。我刚刚发现: |
使用netron查看onnx的维度名称,另外如果不是这里的错,请debug一下来确定报错位置 |
导出的spre模型有问题,你可以检查一下 |
奇怪的是 我导出spre时没有遇到任何问题 这导致我以为问题出在sp。请问该如何检查呢 我没有思路 |
先看onnx的名称和维度,再检查trtexec导出时你的设置,工具上面已经提到过。 |
我在torch1.13下走了一遍sp_re的流程,没有出现问题,你可以尝试一下 |
是sp_re单独用torch1.13+cu117么 我主环境是pytorch2.1.0+cuda12.1 是否会影响 |
刚刚尝试了pytorch1.13+cu117下转onnx 在用trt编译 还是一样的错误=-=不过我电脑安装的cuda是12.1 tensorrt8.6.1.6 |
是的,sp_re单独用这个版本导出。模型正确导出之后,运行的时候只和cuda以及tensorrt版本相关,与pytorch无关,应该不会有问题,并且cuda和tensorrt的多版本切换是十分方便的 |
好的,谢谢!不过在pytorch1.13+cu117下转onnx 在用trt编译 还是一样的错误,我电脑安装的cuda是12.1 tensorrt8.6.1.6我后续再尝试在cuda11.7下trt编译engine以及catkin_make DVINS |
我刚刚把cuda也换到11.7了,还是不行。请问您具体测试的sp_re的python环境是什么 是项目里写的那样吗 |
cuda11.7, torch1.13.1,再次确认,没有问题 |
应该是你的模型的输入输出设置有问题,导致了推理结果搬运错误,请仔细检查 |
您说的设置是在导出onnx时的设置还是trt的设置 我没有找到任何可能错误的地方
…---原始邮件---
发件人: ***@***.***>
发送时间: 2024年5月18日(周六) 晚上6:44
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [kajo-kurisu/D_VINS] 遇到两个问题 (Issue #3)
应该是你的模型的输入输出设置有问题,导致了推理结果搬运错误,请仔细检查
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
最后确认,没有任何问题。请检查你是否改动了config中的参数,如果需要更改请参照 euroc_stereo_imu_config.yaml 的格式填写自己的参数文件。 |
没有改动任何config
…---原始邮件---
发件人: ***@***.***>
发送时间: 2024年5月20日(周一) 上午10:40
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [kajo-kurisu/D_VINS] 遇到两个问题 (Issue #3)
最后确认,没有任何问题。请检查你是否改动了config中的参数,如果需要更改请参照 euroc_stereo_imu_config.yaml 的格式填写自己的参数文件。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
非常抱歉 是我的问题 我用的config不对。。。请问这个是只能用于双目吗
…---原始邮件---
发件人: ***@***.***>
发送时间: 2024年5月20日(周一) 上午10:40
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [kajo-kurisu/D_VINS] 遇到两个问题 (Issue #3)
最后确认,没有任何问题。请检查你是否改动了config中的参数,如果需要更改请参照 euroc_stereo_imu_config.yaml 的格式填写自己的参数文件。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Hi, hello, do you still use these two onnx files now? |
yes |
1.编译sp的engine的时候会遇到trt报错,原因是选择最大512点时,网络经过topk操作返回数值里有混合类型。这个暂时通过不限制512点来正常编译。
2.项目好像不能正常运行,节点直接死掉了
[ WARN] [1715874831.991182397]: /home/index108/VINS/VINS_FUSION/src/VINS-Fusion-master/config/euroc/euroc_stereo_imu_config.yaml
[ WARN] [1715874831.991823929]: fix extrinsic param
[vins_estimator-3] process has died [pid 168234, exit code -11, cmd /home/index108/VINS/D_VINS/devel/lib/vins/vins_node /home/index108/VINS/VINS_FUSION/src/VINS-Fusion-master/config/euroc/euroc_stereo_imu_config.yaml __name:=vins_estimator __log:=/home/index108/.ros/log/7da11d82-139c-11ef-a8f9-e1cdc8ddab3b/vins_estimator-3.log].
log file: /home/index108/.ros/log/7da11d82-139c-11ef-a8f9-e1cdc8ddab3b/vins_estimator-3*.log
[loop_fusion-4] process has died [pid 168239, exit code -11, cmd /home/index108/VINS/D_VINS/devel/lib/loop_fusion/loop_fusion_node /home/index108/VINS/VINS_FUSION/src/VINS-Fusion-master/config/euroc/euroc_stereo_imu_config.yaml __name:=loop_fusion __log:=/home/index108/.ros/log/7da11d82-139c-11ef-a8f9-e1cdc8ddab3b/loop_fusion-4.log].
log file: /home/index108/.ros/log/7da11d82-139c-11ef-a8f9-e1cdc8ddab3b/loop_fusion-4*.log
The text was updated successfully, but these errors were encountered: