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
Why sort bbox with objectness score (Pobj) rather than individual class score (Pc)
util.py line 149 conf_sort_index = torch.sort(image_pred_class[:,4], descending = True )[1]
I searched NMS sort bbox with Pc and compute the rest bbox IoU with Top Pc score bbox then throw away bboxes IoU bigger than treshhold.
And this code is Pobj...
The text was updated successfully, but these errors were encountered:
Why sort bbox with objectness score (Pobj) rather than individual class score (Pc)
util.py line 149
conf_sort_index = torch.sort(image_pred_class[:,4], descending = True )[1]
I searched NMS sort bbox with Pc and compute the rest bbox IoU with Top Pc score bbox then throw away bboxes IoU bigger than treshhold.
And this code is Pobj...
The text was updated successfully, but these errors were encountered: