Skip to content

Commit 13fd0c0

Browse files
committedJul 16, 2024
Fixed function input documentation
1 parent 791e285 commit 13fd0c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎algorithms/objectDetectionMetrics.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def object_is_in_list(obj, obj_list):
2929

3030
def objects_detection_metrics(inputs):
3131
# Expected inputs:
32-
# {
33-
# "name": "images_ground_truth",
32+
# [{
33+
# "name": "images_objects_ground_truth",
3434
# "value": [
3535
# [
3636
# {
@@ -39,9 +39,9 @@ def objects_detection_metrics(inputs):
3939
# }
4040
# ]
4141
# ],
42-
# }
42+
# },
4343
# {
44-
# "name": "images_ground_truth",
44+
# "name": "images_objects_predicted",
4545
# "value": [
4646
# [
4747
# {
@@ -50,7 +50,7 @@ def objects_detection_metrics(inputs):
5050
# }
5151
# ]
5252
# ],
53-
# }
53+
# }]
5454

5555
# Expected outputs:
5656
# {

0 commit comments

Comments
 (0)