Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

XPSImageObjectDetectionEvaluationMetrics

import type { XPSImageObjectDetectionEvaluationMetrics } from "https://googleapis.deno.dev/v1/language:v2.ts";

Model evaluation metrics for image object detection problems. Evaluates prediction quality of labeled bounding boxes.

interface XPSImageObjectDetectionEvaluationMetrics {
boundingBoxMeanAveragePrecision?: number;
boundingBoxMetricsEntries?: XPSBoundingBoxMetricsEntry[];
evaluatedBoundingBoxCount?: number;
}

§Properties

§
boundingBoxMeanAveragePrecision?: number
[src]

The single metric for bounding boxes evaluation: the mean_average_precision averaged over all bounding_box_metrics_entries.

§
boundingBoxMetricsEntries?: XPSBoundingBoxMetricsEntry[]
[src]

The bounding boxes match metrics for each Intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and each label confidence threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 pair.

§
evaluatedBoundingBoxCount?: number
[src]

The total number of bounding boxes (i.e. summed over all images) the ground truth used to create this evaluation had.