How to get an understanding of the in- and output shapes? #9749
Unanswered
JohannesBauer97
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm searching for the right docs/code to understand the input and outputs of the models.
For example, the RetinaNet model for object detection, after converting it to my backend CoreML using mmdeploy, I can see it has the following input and output shapes:
label
anddets
)I guess the in- and outputs aren't changed when converting to different models, so CoreML should be just an example.
For the input shape, the 3 is probably the color channels, 800 and 1344 height and width. But how can I find out what's the first (1) dimension for?
Also for the output shape
dets
I would have expectedx, y, w, h
and not just one dimension.tl;dr: Where to find a description of the input and output shapes for the detection models?
Beta Was this translation helpful? Give feedback.
All reactions