You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the eval.py file, pred_boxes,pred_classes,pred_scores are sorted before calculating ap. In eval_ap_2d function, zip(gt_single_cls, bbox_single_cls, scores_single_cls) was used. but the sizes of gt_single_cls, bbox_single_cls, scores_single_cls are different. This will make low-score results ignored. is it reasonable? eg: gt_single_cls=[[],[3],[],[3]], bbox_single_cls=[[],[3],[3],[3],[3]], scores_single_cls=[[],[0.9],[0.8],[0.7],[0.6]], the 0.6 box will be ignored. but maybe 0.9,0.8,0.7 has the same gt. Consequently, it will cause lower ap.
The text was updated successfully, but these errors were encountered:
In the eval.py file, pred_boxes,pred_classes,pred_scores are sorted before calculating ap. In eval_ap_2d function, zip(gt_single_cls, bbox_single_cls, scores_single_cls) was used. but the sizes of gt_single_cls, bbox_single_cls, scores_single_cls are different. This will make low-score results ignored. is it reasonable? eg: gt_single_cls=[[],[3],[],[3]], bbox_single_cls=[[],[3],[3],[3],[3]], scores_single_cls=[[],[0.9],[0.8],[0.7],[0.6]], the 0.6 box will be ignored. but maybe 0.9,0.8,0.7 has the same gt. Consequently, it will cause lower ap.
The text was updated successfully, but these errors were encountered: