generated from roboflow/template-python
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1442 from roboflow/feat/metrics-module-initial
Core system for Metrics
- Loading branch information
Showing
13 changed files
with
1,331 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
comments: true | ||
status: new | ||
--- | ||
|
||
# Mean Average Precision | ||
|
||
<div class="md-typeset"> | ||
<h2><a href="#supervision.metrics.mean_average_precision.MeanAveragePrecision">MeanAveragePrecision</a></h2> | ||
</div> | ||
|
||
:::supervision.metrics.mean_average_precision.MeanAveragePrecision | ||
|
||
<div class="md-typeset"> | ||
<h2><a href="#supervision.metrics.mean_average_precision.MeanAveragePrecisionResult">MeanAveragePrecisionResult</a></h2> | ||
</div> | ||
|
||
:::supervision.metrics.mean_average_precision.MeanAveragePrecisionResult |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from supervision.metrics.core import CLASS_ID_NONE, Metric, MetricTarget | ||
from supervision.metrics.mean_average_precision import ( | ||
MeanAveragePrecision, | ||
MeanAveragePrecisionResult, | ||
) | ||
from supervision.metrics.utils.object_size import ( | ||
ObjectSizeCategory, | ||
get_detection_size_category, | ||
get_object_size_category, | ||
) |
Oops, something went wrong.