i have train my dataset with yolov11n-seg, then i compile with yolov8n_seg by declaring the last end nodes, after having the hef file, i run the command on raspberry pi 5 and get the following problem, i don’t know how to fix it? can you help me?
Hey @DevPhamPham,
Just checking—did you use the right JSON config file for the segmentation model? (These seg models need a JSON file for the config.)
Also, make sure you’re using the correct post-processing for your model.
To double-check that your .hef file is working, you can run:
hailortcli run {hef}
Let me know what you get!
Hi @omria,
Thanks for replying, here is my result when running the command. And may I ask what JSON file should I provide?
and when compiling the yolov11n-seg model, I just need to do the same as yolov8n-seg but change the end-node names, right?
(hailodfc) devpham@DevPham:~$ hailortcli run rip_mask_yolov11n-seg_V1.3.hef
Running streaming inference (rip_mask_yolov11n-seg_V1.3.hef):
Transform data: true
Type: auto
Quantized: true
[HailoRT] [error] Can't find hailort driver class. Can happen if the driver is not installed, if the kernel was updated or on some driver failure (then read driver dmesg log)
[HailoRT] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64) - Failed listing hailo devices
[HailoRT] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64)
[HailoRT] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64)
[HailoRT] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64)
[HailoRT] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64)
[HailoRT CLI] [error] CHECK_SUCCESS failed with status=HAILO_DRIVER_NOT_INSTALLED(64) - Failed creating vdevice
Hey,
This could be one of two things:
-
Driver not installed
To check that, run:hailortcli fw-control identify
If this fails, the driver might not be installed or the device isn’t connected properly.
-
Version compatibility issue
Even if the driver is installed, mismatched versions between HailoRT, DFC, and HailoMZ can cause problems.
can you share which versions you’re using for the following?- HailoRT
- DFC (Dataflow Compiler)
- Hailo Model Zoo (HailoMZ)