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

GoogleCloudAiplatformV1ExplainRequest

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

Request message for PredictionService.Explain.

interface GoogleCloudAiplatformV1ExplainRequest {
deployedModelId?: string;
instances?: any[];
parameters?: any;
}

§Properties

§
deployedModelId?: string
[src]

If specified, this ExplainRequest will be served by the chosen DeployedModel, overriding Endpoint.traffic_split.

§

If specified, overrides the explanation_spec of the DeployedModel. Can be used for explaining prediction results with different configurations, such as: - Explaining top-5 predictions results as opposed to top-1; - Increasing path count or step count of the attribution methods to reduce approximate errors; - Using different baselines for explaining the prediction results.

§
instances?: any[]
[src]

Required. The instances that are the input to the explanation call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the explanation 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.