I am having problems parsing my model. I have found that some transpose operations cause problems.
The DFC manual mentions the option to select start and end nodes for the parsing process. Doing this for many parts individually works fine.
Now I am trying to either parse all the parts that can be parsed at one time, or parse all the parts individually and piece them together afterwards.
I would prefer the first option, but am not sure if it is currently supported by the parser.
Does anyone have any experience with either approach?
Yes, there are some unsupported operations in DFC.
For cases like yours, we recommend using the second option, which we used in the Hailo BEV Demo. You can check it out at: GitHub - hailo-ai/hailo-BEV
thanks for the reply. I feared, this would be the case…
Do I have to delete the part of the model I don’t want to parse in this moment or is there a way to discard the rest?
In my first tests I saw, that the rest of the model is saved in the resulting har file as well. Since I’ll have to split my model into around 30 parts this would take a lot of space and would be even more complicated to connect them afterwards than it is already.