Unverified Commit c7147af0 authored by Francisco Massa's avatar Francisco Massa Committed by GitHub
Browse files

Fix lint (#2182)

parent 16636d7e
...@@ -14,9 +14,9 @@ def nms(boxes, scores, iou_threshold): ...@@ -14,9 +14,9 @@ def nms(boxes, scores, iou_threshold):
IoU greater than iou_threshold with another (higher scoring) IoU greater than iou_threshold with another (higher scoring)
box. box.
If multiple boxes have the exact same score and satisfy the IoU If multiple boxes have the exact same score and satisfy the IoU
criterion with respect to a reference box, the selected box is criterion with respect to a reference box, the selected box is
not guaranteed to be the same between CPU and GPU. This is similar not guaranteed to be the same between CPU and GPU. This is similar
to the behavior of argsort in PyTorch when repeated values are present. to the behavior of argsort in PyTorch when repeated values are present.
Parameters Parameters
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment