alibaba/EasyCV

DAB-DETR mAP 42.52

KeiChiTse opened this issue · 2 comments

Thanks for your great work! I wonder if the mAP 42.52 of dab-detr is trained via the exact config file "configs/detection/dab_detr/dab_detr_r50_8x2_50e_coco.py"?
If so, I see that you use dropout = 0.0 in DABDetrTransformer instead of the default dropout value 0.1. Is there a performance gain by setting dropout value to 0.0?

We refer to the implementation of the source code, which defaults to 0.0. https://github.com/IDEA-opensource/DAB-DETR/blob/2306cfc8edbc359eb0b55b9859e1f1907409872a/main.py#L79

.

Thanks for your reply!