"git@developer.sourcefind.cn:wangsen/mineru.git" did not exist on "c90ee891d632efd0b6d865ea243c900a4a10a67b"
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