Skip to content

Commit d0579a8

Browse files
author
Matt Sokoloff
committed
update docstring
1 parent 3849a27 commit d0579a8

File tree

1 file changed

+2
-1
lines changed
  • labelbox/data/metrics/iou

1 file changed

+2
-1
lines changed

labelbox/data/metrics/iou/iou.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def miou_metric(ground_truths: List[Union[ObjectAnnotation,
1616
include_subclasses=True) -> List[ScalarMetric]:
1717
"""
1818
Computes miou between two sets of annotations.
19-
This will most commonly be used for data row level metrics.
19+
These annotations should relate to the same data (image/video).
2020
Each class in the annotation list is weighted equally in the iou score.
2121
2222
Args:
@@ -41,6 +41,7 @@ def feature_miou_metric(ground_truths: List[Union[ObjectAnnotation,
4141
include_subclasses=True) -> List[ScalarMetric]:
4242
"""
4343
Computes the miou for each type of class in the list of annotations.
44+
These annotations should relate to the same data (image/video).
4445
4546
Args:
4647
ground_truth : Label containing human annotations or annotations known to be correct

0 commit comments

Comments
 (0)