hoiliu-0801 / DNTR

A DeNoising FPN with Transformer R-CNN for Tiny Object Detection
Apache License 2.0
20 stars 1 forks source link

The baseline experiment of Faster R-CNN. #5

Closed xuexiaozhou closed 4 weeks ago

xuexiaozhou commented 1 month ago

Hello, I conducted a baseline experiment on the VisDrone2019 dataset using a Faster R-CNN model with a ResNet-50 backbone and FPN, following the settings in the paper. The input size for both the training and test sets was (1333, 800), and the final average precision was 28.2%. Where did I go wrong? Why is the precision so much higher than the results reported in the paper?

hoiliu-0801 commented 1 month ago

The result of Faster R-CNN is referenced in this work: https://arxiv.org/abs/2112.10415. The resolution is correct! I think the improved results may due to the updated mmdet version.

xuexiaozhou commented 1 month ago

Faster R-CNN 的结果引用于此文:https://arxiv.org/abs/2112.10415。 分辨率正确!我认为结果的改善可能是由于更新了 mmdet 版本。

Will the results improve so much after the mmdet update? Did you not reproduce the baseline during your experiments? If the baseline results are already much better than before, how can you prove that the improvements are due to your own module?

hoiliu-0801 commented 1 month ago

DetectoRS is the reproduced baseline, which is the degenerated model of DNTR (DetectoRS+DN-FPN+Trans-RCNN). Please refer to the implementation details and the experiments to see the improvements.