```
precision = hit_bbox_nums/pred_bbox_nums
recall = 1. - miss_bbox_nums/gt_bbox_nums
f1_score = 2 * precision * recall / (precision + recall + 1e-10)
giou = gious/num
plcc, srcc = get_plcc_srcc(pred_scores, gt_scores)
final_score = f1_score * area_weight + (plcc+srcc)* score_weight/2
```
It appears that the "giou" is not included in the final score. Shouldn't this metric be considered when calculating the final score?
Posted by: Zevin @ Feb. 10, 2025, 6:51 a.m.Giou will be used when the total scores are same.
Posted by: DTVQ2 @ Feb. 19, 2025, 1:18 p.m.