"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "c13e57bda9be0ca9d628cadb47829ffe0549a8c4"
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): ...@@ -70,7 +70,7 @@ def iou(boxes1, boxes2):
Args: Args:
boxes1: a numpy array with shape [N, 4] holding N boxes. 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: Returns:
a numpy array with shape [N, M] representing pairwise iou scores. a numpy array with shape [N, M] representing pairwise iou scores.
...@@ -92,7 +92,7 @@ def ioa(boxes1, boxes2): ...@@ -92,7 +92,7 @@ def ioa(boxes1, boxes2):
Args: Args:
boxes1: a numpy array with shape [N, 4] holding N boxes. 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: Returns:
a numpy array with shape [N, M] representing pairwise ioa scores. 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