jshilong / DDQ

Dense Distinct Query for End-to-End Object Detection (CVPR2023)
Apache License 2.0
244 stars 6 forks source link

Some questions about ddd #13

Closed ahomez closed 1 year ago

ahomez commented 1 year ago

Hi, thanks for this work, I have read the paper and code, and still have some questions:

  1. You use NMS in dqs_cfg In ddq_fcn_head.py(L48), I would like to know if it is possible to use other NMS(like softNMS), to further enhance model performance.
  2. In ddq_rcnn_r50_1x.py, you used FPN, and set nums_out=6, I think you use p2-p7.I would like to know how to replace the FPN here with another neck, such as nasfpn which only return p3-p7. Looking forward to your reply.
jshilong commented 1 year ago

Thank you for your interest.

  1. Regarding the adoption of softnms, I have not conducted any related experiments, but I intuitively think that it may can not feature improve the model since 0.7 in normal NMS can handle most scenes.

  2. Replacing FPN with a heavy encoder can definitely further improve performance(we report results with dyhead in our study). You can also add an extra P2 in other FPN structures.

ahomez commented 1 year ago

Thank for your reply, I will try it!