Sense-X / Co-DETR

[ICCV 2023] DETRs with Collaborative Hybrid Assignments Training
MIT License
969 stars 105 forks source link

Why the loss weight is set as 10.0*num_dec_layer*lambda_2 #46

Closed Xudangliatiger closed 1 year ago

Xudangliatiger commented 1 year ago

Why the loss weight is set as 10.0num_dec_layerlambda_2

TempleX98 commented 1 year ago

Hi, num_dec_layer*lambda_2 refers to the auxiliary loss weight in Co-DETR. 10.0 is the loss weight for GIoU loss in the config (configs/faster_rcnn/faster_rcnn_r50_fpn_giou_1x_coco.py).

Xudangliatiger commented 1 year ago

Thanks! Well noted