alibaba / EasyCV

An all-in-one toolkit for computer vision
Apache License 2.0
1.76k stars 199 forks source link

DAB-DETR mAP 42.52 #162

Closed KeiChiTse closed 2 years ago

KeiChiTse commented 2 years ago

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_50ecoco.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?

tuofeilunhifi commented 2 years ago

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

KeiChiTse commented 2 years ago

.

Thanks for your reply!