-
I'm having a similar question as shown in the link. Anyone know what's the model output format? Isit [x1,y1,x2,y2, conf, class] ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This fn determines the model output right now, as wrapped in a 'bench' class for producing predictions: efficientdet-pytorch/effdet/anchors.py Line 91 in b3dcb20 The raw anchor relative output of the base model is in yxyx format. |
Beta Was this translation helpful? Give feedback.
-
@rwightman what is length of classouts/box_outs list. In my cases i pass num classes as 4 why i get as 5, is this length =num of classes |
Beta Was this translation helpful? Give feedback.
This fn determines the model output right now, as wrapped in a 'bench' class for producing predictions:
efficientdet-pytorch/effdet/anchors.py
Line 91 in b3dcb20
The raw anchor relative output of the base model is in yxyx format.