callcut.evaluation.Match🔗 class callcut.evaluation.Match(gt_index, pred_index, iou)[source]🔗 A match between a ground truth and predicted interval. Parameters: gt_indexintIndex of the matched ground truth interval. pred_indexintIndex of the matched predicted interval. ioufloatIntersection over Union score for this match. Examples >>> match = Match(gt_index=0, pred_index=2, iou=0.75) >>> match.iou 0.75