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

GoogleCloudAiplatformV1SchemaModelevaluationMetricsForecastingEvaluationMetrics

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

Metrics for forecasting evaluation results.

interface GoogleCloudAiplatformV1SchemaModelevaluationMetricsForecastingEvaluationMetrics {
meanAbsoluteError?: number;
meanAbsolutePercentageError?: number;
rootMeanSquaredError?: number;
rootMeanSquaredLogError?: number;
rootMeanSquaredPercentageError?: number;
rSquared?: number;
weightedAbsolutePercentageError?: number;
}

§Properties

§
meanAbsoluteError?: number
[src]

Mean Absolute Error (MAE).

§
meanAbsolutePercentageError?: number
[src]

Mean absolute percentage error. Infinity when there are zeros in the ground truth.

§
rootMeanSquaredError?: number
[src]

Root Mean Squared Error (RMSE).

§
rootMeanSquaredLogError?: number
[src]

Root mean squared log error. Undefined when there are negative ground truth values or predictions.

§
rootMeanSquaredPercentageError?: number
[src]

Root Mean Square Percentage Error. Square root of MSPE. Undefined/imaginary when MSPE is negative.

§
rSquared?: number
[src]

Coefficient of determination as Pearson correlation coefficient. Undefined when ground truth or predictions are constant or near constant.

§
weightedAbsolutePercentageError?: number
[src]

Weighted Absolute Percentage Error. Does not use weights, this is just what the metric is called. Undefined if actual values sum to zero. Will be very large if actual values sum to a very small number.