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
self.pre_nms_thresh = 0.05 is the default value and this make the value of pre_nms_top_n = tensor([0, 0]. So, it doesn't work well. How can I fix this problem?
The text was updated successfully, but these errors were encountered:
In 'centermask/modeling/fcos/fcos_outputs/'
self.pre_nms_thresh = cfg.SCORE_THRESH_TEST
candidate_inds = box_cls > self.pre_nms_thresh
pre_nms_top_n = candidate_inds.reshape(N, -1).sum(1)
self.pre_nms_thresh = 0.05 is the default value and this make the value of pre_nms_top_n = tensor([0, 0]. So, it doesn't work well. How can I fix this problem?
The text was updated successfully, but these errors were encountered: