-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
341 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ Retrieval Metric | |
:template: classtemplate.rst | ||
|
||
RetrievalRecall | ||
RetrievalAveragePrecision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .multi_label import AveragePrecision, MultiLabelMetric | ||
from .multi_task import MultiTasksMetric | ||
from .retrieval import RetrievalRecall | ||
from .retrieval import RetrievalAveragePrecision, RetrievalRecall | ||
from .single_label import Accuracy, ConfusionMatrix, SingleLabelMetric | ||
from .voc_multi_label import VOCAveragePrecision, VOCMultiLabelMetric | ||
|
||
__all__ = [ | ||
'Accuracy', 'SingleLabelMetric', 'MultiLabelMetric', 'AveragePrecision', | ||
'MultiTasksMetric', 'VOCAveragePrecision', 'VOCMultiLabelMetric', | ||
'ConfusionMatrix', 'RetrievalRecall' | ||
'ConfusionMatrix', 'RetrievalRecall', 'RetrievalAveragePrecision' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.