wangxiang0722

Results 1 comments of wangxiang0722

I also ran into this problem, and here's my solution: utils/metric.py ``` def get_threshold(gt, score): gt_mask = np.asarray(gt) gt_mask_copy = gt_mask.copy() gt_mask[gt_mask_copy < 0.5] = 0 gt_mask[gt_mask_copy >= 0.5] =...