Understanding ONNX nodes for HAR parsing

Hi everyone!

Today, I tried parsing a custom pre-trained Yolov8n model we had laying around (I wanted to skip the whole retraining step and “just” compile that model instead).Using the toolchain by Ultralytics, I converted the model from .pt to .onnx easily.

But when parsing, the parser had an error, as some operations are apparently unsupported, and suggested truncating the model to an earlier layer and using that as output. In an older community post, I found a linked YAML-file from the Model Zoo, where the output nodes used in the Model Zoo .hef model were listed.

My question is: how exactly did you come to the conclusion to use the 4 output layers used in your yolov8n conversion? I assume that the layers after are just used for some first steps of postprocessing; however I have no idea how you identified that. Are there some common indicators to identify the nodes? Or do you have to just be very familiar with the model you want to compile?

On a related note: how did you then go ahead and manually implement the postprocessing? Does that require some digging around in the source code of the library?

For the YOLO - family of models, this isn’t that important, as I can just retrain them using the retraining docker images. But in case I want to compile other models whose architectures aren’t part of the Model Zoo, I would have absolutely no idea where to begin in case the parser finds an unsupported operation.

Thanks for the help and insight!

You have a few options:

  • Open the network in Netron and compare the layers with the list of supported layers in the Hailo Dataflow Compiler User Guide
  • Use the hailo parser CLI without start and end-nodes and see what nodes are recommended by the parser
  • Open the model in the DFC studio. Inside the Hailo AI Software Suite Docker call hailo dfc-studio You will see all layers in a graph with colors indicating the supported layers.

That definitively helps.

You can use the post processing code for the Model Zoo models as inspiration. However for unknown models the pre/post processing can be anything and you will have to implement unsupported operations on the host.

ChatGPT can give you some hints on where to start.

1 Like