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

GoogleCloudAiplatformV1SchemaPredictPredictionTabularRegressionPredictionResult

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

Prediction output format for Tabular Regression.

interface GoogleCloudAiplatformV1SchemaPredictPredictionTabularRegressionPredictionResult {
lowerBound?: number;
quantilePredictions?: number[];
quantileValues?: number[];
upperBound?: number;
value?: number;
}

§Properties

§
lowerBound?: number
[src]

The lower bound of the prediction interval.

§
quantilePredictions?: number[]
[src]

Quantile predictions, in 1-1 correspondence with quantile_values.

§
quantileValues?: number[]
[src]

Quantile values.

§
upperBound?: number
[src]

The upper bound of the prediction interval.

§
value?: number
[src]

The regression value.