I have a model based on YOLOX-S with some modifications. Following the Hailo Dataflow Compiler User Guide, I converted my model to obtain my_yolox_s.hef. However, when I ran hailortcli benchmark my_yolox_s.hef on the Hailo-8 device, the frame rate was quite low. Then, I directly used the yolox_s_leaky.onnx from hailo_model_zoo to generate the HEF model, but the frame rate remained similarly low (under 40 FPS). However, when I converted the same yolox_s_leaky.onnx using HailoMZ, the resulting model achieved over 270 FPS.
Questions:
- Does HailoMZ apply additional optimization settings during model conversion?
- How can I achieve similar performance using the Dataflow Compiler API directly (without HailoMZ)?
- Alternatively, how can I use
hailo_model_zooto convert my own custom model?