Hi everyone,
I am trying to run a custom model based on YOLO (version 2026/latest) on my Raspberry Pi 5 with Hailo-8L, but I am hitting a wall with an NMS error.
Environment:
-
Hardware: Raspberry Pi 5 26 TFLOPS
-
Accelerator: Hailo-8
-
Software: Hailo RT / Model Zoo
The Error: When I try to run the inference, I get the following log:
Plaintext
NMS score threshold is set, but there is no NMS output in this model. CHECK_SUCCESS failed with status=6What I’ve tried:
-
Compiled the model using the Hailo Model Compiler.
-
Followed various video guides and the official Hailo GitHub repository documentation.
-
The model seems to load, but it fails right at the start of the pipeline.
Question: It seems the model was compiled without the NMS integrated into the
.heffile, or the application is expecting an NMS layer that isn’t defined in the post-processing configuration. How can I ensure the NMS is correctly included during the conversion from ONNX to HEF for this specific YOLO version? Do I need to modify the Allals (CLI) script to includenms_postprocess?Thanks in advance!
-