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

XPSImageSegmentationEvaluationMetricsConfidenceMetricsEntry

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

Metrics for a single confidence threshold.

interface XPSImageSegmentationEvaluationMetricsConfidenceMetricsEntry {
confidenceThreshold?: number;
confusionMatrix?: XPSConfusionMatrix;
diceScoreCoefficient?: number;
iouScore?: number;
precision?: number;
recall?: number;
}

§Properties

§
confidenceThreshold?: number
[src]

The confidence threshold value used to compute the metrics.

§
confusionMatrix?: XPSConfusionMatrix
[src]

Confusion matrix of the per confidence_threshold evaluation. Pixel counts are set here. Only set for model level evaluation, not for evaluation per label.

§
diceScoreCoefficient?: number
[src]

DSC or the F1 score: The harmonic mean of recall and precision.

§
iouScore?: number
[src]

IOU score.

§
precision?: number
[src]

Precision for the given confidence threshold.

§
recall?: number
[src]

Recall for the given confidence threshold.