Hey Everyone,
I’m new to the community and new to using hailo. I had trained my custom model using this guide
However when I try to run it I am getting a
“VStream best/conv52 not found in sorted output names” and
“CHECK_SUCCESS failed with status=HAILO_INTERNAL_FAILURE(8)” error
Not sure what it means, nor there are any other guides on that. I appreciate any help coming towards me
Thanks & Regards
Hardware : Raspberry pi 5 4gb, Hailo 8L
Software : Debian 12 Bullseye, HailoRT & Other hailo versions @ 4.20
“VStream best/conv52 not found in sorted output names”
Your pipeline is looking for an output node called best/conv52, but your model doesn’t actually have one by that name. This usually means your post-processing code or config expects a different output node than what your model is providing.
“CHECK_SUCCESS failed with status=HAILO_INTERNAL_FAILURE(8)”
This is a generic runtime error, usually just telling you something already went wrong (like above).
Why it happens
Custom YOLO Models:
If you retrained YOLO (like YOLOv11n) and changed the number of classes, the output node name might not match what is in the example.
Model Compilation:
If you didn’t specify the right output nodes during compilation, or used the wrong config, the output names get mismatched.