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

GoogleCloudAiplatformV1SchemaPredictPredictionTabularClassificationPredictionResult

import type { GoogleCloudAiplatformV1SchemaPredictPredictionTabularClassificationPredictionResult } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Prediction output format for Tabular Classification.

interface GoogleCloudAiplatformV1SchemaPredictPredictionTabularClassificationPredictionResult {
classes?: string[];
scores?: number[];
}

§Properties

§
classes?: string[]
[src]

The name of the classes being classified, contains all possible values of the target column.

§
scores?: number[]
[src]

The model's confidence in each class being correct, higher value means higher confidence. The N-th score corresponds to the N-th class in classes.