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

XPSBoundingBoxMetricsEntryConfidenceMetricsEntry

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

Metrics for a single confidence threshold.

interface XPSBoundingBoxMetricsEntryConfidenceMetricsEntry {
confidenceThreshold?: number;
f1Score?: number;
precision?: number;
recall?: number;
}

§Properties

§
confidenceThreshold?: number
[src]

The confidence threshold value used to compute the metrics.

§
f1Score?: number
[src]

The harmonic mean of recall and precision.

§
precision?: number
[src]

Precision for the given confidence threshold.

§
recall?: number
[src]

Recall for the given confidence threshold.