-
Notifications
You must be signed in to change notification settings - Fork 27
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
Seeking advice on 'process has died' error #33
Comments
Hi @immaixq, Based on the information, I suspect that you're right that the cause of this issue is the two outputs as well since our node currently does not expect that (as mentioned in comment in #32). If possible, could you provide me with more information about your usecase? Are you using a yolov8 detection model or another type of model (e.g. segmentation)? Based on my understanding, the detection model should output only one tensor, whereas the segmentation one outputs two. If it's the segmentation model, I think the decoder we provide is currently incompatible since it expects one output from a yolov8 detection model. For general investigation, I'd recommend checking out this tutorial for debugging using |
@kajananchinniahNV Thank you for the swift reply. And yes, I'm using a yolov8 segmentation model. Is there any ways or sample code I can run inference with it in isaac in that case ? Or I'd be glad to hear any suggestions to run and deploy the yolov8 segmentation model with ros2 on jetson device. |
My recommendation would be to check out a feature we have called CUDA with NITROS. This is our approach to allowing users to write their own custom pre-processing and post-processing nodes for DNN applications in C++. The source code in Another option would be to write the a postprocessing node specific to yolov8 segmentation model in Python as well. NVIDIA AI IOT has an example that can be found here. If you run into issues using this approach, please let us know. |
@kajananchinniahNV Thank you for the suggestions, I'll give it a try! |
@kajananchinniahNV Thank you for your help, I have changed the parameters as mentioned above and managed to fix the mismatch error. Unfortunately another error occurred. The process has died without additional log on its cause. it'd be great if you could share some insights or advice on how to troubleshoot the cause of it.
Really appreciate both of your help, thank you!
Originally posted by @immaixq in #32 (comment)
The text was updated successfully, but these errors were encountered: