mmdetection
mmdetection copied to clipboard
MMDet implement ATSS using anchor only?
ATSSHead
is inherited from AnchorHead
, which uses anchor_generator
of type AnchorGenerator
.
However, FCOSHead
is inherited from AnchorFreeHead
, which uses anchor_generator
of type MlvlPointGenerator
, and this is the Anchor-free version.
There is no implementation of ATSSHead
Anchor-free version? ATSS paper has FCOS + ATSS Label Assignment, why don't MMDet implementation keep FCOS and implement extra label assignment step?
For now, mmdetection only has implemented Anchor-based ATSS for benchmarking.
For now, mmdetection only has implemented Anchor-based ATSS for benchmarking.
Does mmdetection have any plan implementing Anchor-free ATSS soon? If no, can I make an issue in mmdeteciton to check my Anchor-free ATSS implementation when it finishes?
Sure, you can do that!
Where can I find a sample of ATSS + FCOS?