How to write a multi-label object detection network? #16
Replies: 2 comments 7 replies
-
@GuanRunwei hi i think you looking to the problem statement similar to my requirement , i have reference here which others have done for MaskRCCN https://github.com/itmessager/Figma_RCNN |
Beta Was this translation helpful? Give feedback.
-
An easy way is to make a one-hot to all categories. for example, if you have 2 father class and 3 child class of each one, you can manipulate them into a whole 6 categories. However, this is only applicable to onehot scenarios. If your labels is unmutual, you can directly output multilabel and mark every possible output as positive. |
Beta Was this translation helpful? Give feedback.
-
Hello, I am a student in Uni and I am trying to write a multi-label object detection network. As we all know, an object tends to have many labels in the real world(e.g. a car may have 2 labels: SUV, black), so how to design and develop a multi-label network or system?
From my perspective, the ideal architecture of the detection head is multiple sub-heads for different category classification and one sub-head for bounding box regression. In addition, how to alleviate the conflict and ambiguous of the feature extracted by backbone is also chanllenging for me. Anyone interested in this project could join me.
?
Beta Was this translation helpful? Give feedback.
All reactions