Hello everyone,
I am working on running inference on a YOLOv11 model using HailoRT and would like to log intermediate layer outputs. However, I noticed that hef.get_output_vstream_infos()
only lists final outputs, and intermediate layers are not available by default. *I need to extract activations from specific intermediate layers.
Questions:
-
How can I modify my inference script to log outputs from specific intermediate layers?
-
How do I compile my YOLOv11 model to include intermediate layers as outputs?
-
Are there best practices for logging multiple intermediate layers without significantly affecting inference speed?