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

GoogleCloudDatalabelingV1beta1ConfidenceMetricsEntry

import type { GoogleCloudDatalabelingV1beta1ConfidenceMetricsEntry } from "https://googleapis.deno.dev/v1/datalabeling:v1beta1.ts";
interface GoogleCloudDatalabelingV1beta1ConfidenceMetricsEntry {
confidenceThreshold?: number;
f1Score?: number;
f1ScoreAt1?: number;
f1ScoreAt5?: number;
precision?: number;
precisionAt1?: number;
precisionAt5?: number;
recall?: number;
recallAt1?: number;
recallAt5?: number;
}

§Properties

§
confidenceThreshold?: number
[src]

Threshold used for this entry. For classification tasks, this is a classification threshold: a predicted label is categorized as positive or negative (in the context of this point on the PR curve) based on whether the label's score meets this threshold. For image object detection (bounding box) tasks, this is the intersection-over-union (IOU) threshold for the context of this point on the PR curve.

§
f1Score?: number
[src]

Harmonic mean of recall and precision.

§
f1ScoreAt1?: number
[src]

The harmonic mean of recall_at1 and precision_at1.

§
f1ScoreAt5?: number
[src]

The harmonic mean of recall_at5 and precision_at5.

§
precision?: number
[src]

Precision value.

§
precisionAt1?: number
[src]

Precision value for entries with label that has highest score.

§
precisionAt5?: number
[src]

Precision value for entries with label that has highest 5 scores.

§
recall?: number
[src]

Recall value.

§
recallAt1?: number
[src]

Recall value for entries with label that has highest score.

§
recallAt5?: number
[src]

Recall value for entries with label that has highest 5 scores.