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

GoogleCloudAiplatformV1PredictRequest

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

Request message for PredictionService.Predict.

interface GoogleCloudAiplatformV1PredictRequest {
instances?: any[];
parameters?: any;
}

§Properties

§
instances?: any[]
[src]

Required. The instances that are the input to the prediction call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the prediction call errors in case of AutoML Models, or, in case of customer created Models, the behaviour is as documented by that Model. The schema of any single instance may be specified via Endpoint's DeployedModels' Model's PredictSchemata's instance_schema_uri.

§
parameters?: any
[src]

The parameters that govern the prediction. The schema of the parameters may be specified via Endpoint's DeployedModels' Model's PredictSchemata's parameters_schema_uri.