Skip to content

microsoft/visionmetrics

Repository files navigation

visionmetrics

This repo contains evaluation metrics for vision tasks such as classification, object detection, image caption, and image matting. It uses torchmetrics as a base library and extends it to support custom vision tasks as necessary.

Available Metrics

Image Classification:

  • Accuracy: computes the top-k accuracy for a classification problem. A prediction is considered correct, if the ground truth label is within the labels with top k confidences.
  • PrecisionEvaluator: computes precision.
  • RecallEvaluator: computes recall.
  • AveragePrecisionEvaluator: computes the average precision, i.e., precision averaged across different confidence thresholds.
  • AUCROC: computes Area under the Receiver Operating Characteristic Curve.
  • F1Score: computes f1-score.
  • CalibrationLoss**: computes the ECE loss, i.e., the expected calibration error, given the model confidence and true labels for a set of data points.
  • ConfusionMatrix: computes the confusion matrix of a classification. By definition a confusion matrix C is such that Cij is equal to the number of observations known to be in group i and predicted to be in group j (https://en.wikipedia.org/wiki/Confusion_matrix).
  • ExactMatch: computes the exact match score, i.e., the percentage of samples where the predicted label is exactly the same as the ground truth label.

The above metrics are available for Binary, Multiclass, and Multilabel classification tasks. For example, BinaryAccuracy is the binary version of Accuracy and MultilabelAccuracy is the multilabel version of Accuracy. Please refer to the example usage below for more details.

** The CalibrationLoss metric is only for binary and multiclass classification tasks.

Object Detection:

  • MeanAveragePrecision: Coco mean average precision (mAP) computation across different classes, under multiple IoU(s).
  • ClassAgnosticAveragePrecision: Coco mean average prevision (mAP) calculated in a class-agnostic manner. Considers all classes as one class.

Image Caption:

Image Matting:

  • MeanIOU: computes the mean intersection-over-union score.
  • ForegroundIOU: computes the foreground intersection-over-union evaluator score.
  • BoundaryMeanIOU: computes the boundary mean intersection-over-union score.
  • BoundaryForegroundIOU: computes the boundary foreground intersection-over-union score.
  • L1Error: computes the L1 error.

Regression:

  • MeanSquaredError: computes the mean squared error.
  • MeanAbsoluteError: computes the mean absolute error.

Retrieval:

  • RetrievalRecall: computes Recall@k, which is the percentage of relevant items in top-k among all relevant items
  • RetrievalPrecision: computes Precision@k, which is the percentage of TP among all items classified as P in top-k.
  • RetrievalMAP: computes Mean Average Precision@k, an information retrieval metric.
  • RetrievalPrecisionRecallCurveNPoints: computes a Precision-Recall Curve, interpolated at k points and averaged over all samples.

Grounding

  • Recall: computes Recall@k, which is the percentage of correct grounding in top-k among all relevant items.

Example Usage

import torch
from visionmetrics.classification import MulticlassAccuracy

preds = torch.rand(10, 10)
target = torch.randint(0, 10, (10,))

# Initialize metric
metric = MulticlassAccuracy(num_classes=10, top_k=1, average='macro')

# Add batch of predictions and targets
metric.update(preds, target)

# Compute metric
result = metric.compute()

Implementing Custom Metrics

Please refer to torchmetrics for more details on how to implement custom metrics.

Additional Requirements

The image caption metric calculation requires Jave Runtime Environment (JRE) (Java 1.8.0) and some extra dependencies which can be installed with pip install visionmetrics[caption]. This is not required for other evaluators. If you do not need image caption metrics, JRE is not required.