Unverified 提交 1cad0ce2 authored 作者: Jean-Baptiste Martin's avatar Jean-Baptiste Martin 提交者: GitHub

Allow `multi_label` option for NMS with PyTorch Hub (#4728)

* Allow specifying multi_label option for NMS when using torch hub * Reformat Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
上级 deb434ae
......@@ -278,6 +278,7 @@ class AutoShape(nn.Module):
conf = 0.25 # NMS confidence threshold
iou = 0.45 # NMS IoU threshold
classes = None # (optional list) filter by class
multi_label = False # NMS multiple labels per box
max_det = 1000 # maximum number of detections per image
def __init__(self, model):
......@@ -337,7 +338,8 @@ class AutoShape(nn.Module):
t.append(time_sync())
# Post-process
y = non_max_suppression(y, self.conf, iou_thres=self.iou, classes=self.classes, max_det=self.max_det) # NMS
y = non_max_suppression(y, self.conf, iou_thres=self.iou, classes=self.classes,
multi_label=self.multi_label, max_det=self.max_det) # NMS
for i in range(n):
scale_coords(shape1, y[i][:, :4], shape0[i])
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论