My hailort.log gets polluted by this line every video-frame:
[2025-02-12 19:43:59.345] [32812] [HailoRT] [info] [hef.cpp:1929] [get_network_group_and_network_name] No name was given. Addressing all networks of default network_group: yolov8s
I plan on using the Python-API, but always get this issue. How can I solve this?
Let me clarify the ‘urgency’ of this issue a bit more…
Running a Raspberry PI from SD card has one big limitation: The number of write-cycles of the SD card. This logging-bug (?) will break your PI in a month (guestimate).
this log message indicates that the HailoRT API is assigning a default network group because no explicit network group name was provided.
[2025-02-12 19:43:59.345] [32812] [HailoRT] [info] [hef.cpp:1929] [get_network_group_and_network_name] No name was given. Addressing all networks of default network_group: yolov8s
To fix this and avoid the message, you should explicitly name your network group. Here’s how to do it:
First, check what network groups are available in your HEF file:
I have the same issue, I try to run this example, but the logs are just keep coming. Here only VDevice is used, could you please show an example how to configure network group using VDevice and in the detection_with_tracker example?
The first part provides me with this:
network_group_names = [‘yolov8s’]
For the second part, however, I have no clue where to apply this in the detection_with_tracker example (I did try some places, but kept getting errors).
Could you give some more hints. For example in which file and function to apply this piece of code.