The size of tensor a (6300) must match the size of tensor b (6810)? #3012
Answered
by
zachgk
StefanOltmann
asked this question in
Q&A
-
Using the RetinaFace sample I get this error message: What does it mean? |
Beta Was this translation helpful? Give feedback.
Answered by
zachgk
Mar 2, 2024
Replies: 1 comment 1 reply
-
It means that in some |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
StefanOltmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It means that in some
NDArray
operation, you are usingNDArray
s of incompatible shapes. For example, you can't add an array ofShape(3)
to one ofShape(5)
. The shapes have to be equal or broadcastable to each other. The stack trace or more of the error message should give you some hints as to which operation is wrong