"vscode:/vscode.git/clone" did not exist on "2f8481da9bacb3f93d19a9806e83daf886c2d4e2"
Commit 359a51bf authored by Zhichao Lu's avatar Zhichao Lu Committed by TF Object Detection Team
Browse files

Fix typo in iou op docstring.

PiperOrigin-RevId: 379898918
parent 503b6073
......@@ -70,7 +70,7 @@ def iou(boxes1, boxes2):
Args:
boxes1: a numpy array with shape [N, 4] holding N boxes.
boxes2: a numpy array with shape [M, 4] holding N boxes.
boxes2: a numpy array with shape [M, 4] holding M boxes.
Returns:
a numpy array with shape [N, M] representing pairwise iou scores.
......@@ -92,7 +92,7 @@ def ioa(boxes1, boxes2):
Args:
boxes1: a numpy array with shape [N, 4] holding N boxes.
boxes2: a numpy array with shape [M, 4] holding N boxes.
boxes2: a numpy array with shape [M, 4] holding M boxes.
Returns:
a numpy array with shape [N, M] representing pairwise ioa scores.
......
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