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

XPSClassificationEvaluationMetrics

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

Model evaluation metrics for classification problems. It can be used for image and video classification. Next tag: 9.

interface XPSClassificationEvaluationMetrics {
auPrc?: number;
auRoc?: number;
baseAuPrc?: number;
confidenceMetricsEntries?: XPSConfidenceMetricsEntry[];
confusionMatrix?: XPSConfusionMatrix;
evaluatedExamplesCount?: number;
logLoss?: number;
}

§Properties

§
auPrc?: number
[src]

The Area under precision recall curve metric.

§
auRoc?: number
[src]

The Area Under Receiver Operating Characteristic curve metric. Micro-averaged for the overall evaluation.

§
baseAuPrc?: number
[src]

The Area under precision recall curve metric based on priors.

§
confidenceMetricsEntries?: XPSConfidenceMetricsEntry[]
[src]

Metrics that have confidence thresholds. Precision-recall curve can be derived from it.

§
confusionMatrix?: XPSConfusionMatrix
[src]

Confusion matrix of the evaluation. Only set for MULTICLASS classification problems where number of annotation specs is no more than 10. Only set for model level evaluation, not for evaluation per label.

§
evaluatedExamplesCount?: number
[src]

The number of examples used for model evaluation.

§
logLoss?: number
[src]

The Log Loss metric.