Hi all!
I am working on the PointPillars model that TI provides to be compatible with the TDA4 and I have some doubts regarding the output with 1 class.
The penultimate layer, before the concat, has 3 outputs which are the following:
cls_preds = shape=(1, 248, 216, 2 * num_classes * num_classes)
box_preds = shape=(1, 248, 216, 14 * num_classes)
dir_cls_preds = shape=(1, 248, 216, 4 * num_classes)
But my question is regarding the reshape layer. What is the final output? I think that the total number of preds are 107316
but the vector of 10 values I don't know it
Moreover, if I run the example notebook in the edgeai cloud with the TIDLExecutionProvider with onnxruntime,
the output is totally different and it's based on the prototxt with a final vector of (50,9) where 50 is the number of
predictions and 9 is the expected bbox3d with the class, confidence and yaw.
Thank you in advance,
David