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

GoogleCloudAiplatformV1SchemaModelevaluationMetricsTextExtractionEvaluationMetricsConfidenceMetrics

import type { GoogleCloudAiplatformV1SchemaModelevaluationMetricsTextExtractionEvaluationMetricsConfidenceMetrics } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";
interface GoogleCloudAiplatformV1SchemaModelevaluationMetricsTextExtractionEvaluationMetricsConfidenceMetrics {
confidenceThreshold?: number;
f1Score?: number;
precision?: number;
recall?: number;
}

§Properties

§
confidenceThreshold?: number
[src]

Metrics are computed with an assumption that the Model never returns predictions with score lower than this value.

§
f1Score?: number
[src]

The harmonic mean of recall and precision.

§
precision?: number
[src]

Precision for the given confidence threshold.

§
recall?: number
[src]

Recall (True Positive Rate) for the given confidence threshold.