Add integrations/gradio Docs page (#7935)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: WangQvQ <1579093407@qq.com> Co-authored-by: Martin Pl <martin-plank@gmx.de> Co-authored-by: Mactarvish <Mactarvish@users.noreply.github.com>
This commit is contained in:
parent
2881cda483
commit
ba484929e3
5 changed files with 110 additions and 3 deletions
|
|
@ -701,7 +701,7 @@ class Metric(SimpleClass):
|
|||
Returns the mean Average Precision (mAP) at an IoU threshold of 0.5.
|
||||
|
||||
Returns:
|
||||
(float): The mAP50 at an IoU threshold of 0.5.
|
||||
(float): The mAP at an IoU threshold of 0.5.
|
||||
"""
|
||||
return self.all_ap[:, 0].mean() if len(self.all_ap) else 0.0
|
||||
|
||||
|
|
@ -711,7 +711,7 @@ class Metric(SimpleClass):
|
|||
Returns the mean Average Precision (mAP) at an IoU threshold of 0.75.
|
||||
|
||||
Returns:
|
||||
(float): The mAP50 at an IoU threshold of 0.75.
|
||||
(float): The mAP at an IoU threshold of 0.75.
|
||||
"""
|
||||
return self.all_ap[:, 5].mean() if len(self.all_ap) else 0.0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue