Class GoogleCloudAiplatformV1ExplainResponse
Response message for PredictionService.Explain.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1ExplainResponse : IDirectResponseSchema
Properties
DeployedModelId
ID of the Endpoint's DeployedModel that served this explanation.
Declaration
[JsonProperty("deployedModelId")]
public virtual string DeployedModelId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Explanations
The explanations of the Model's PredictResponse.predictions. It has the same number of elements as instances to be explained.
Declaration
[JsonProperty("explanations")]
public virtual IList<GoogleCloudAiplatformV1Explanation> Explanations { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1Explanation> |
Predictions
The predictions that are the output of the predictions call. Same as PredictResponse.predictions.
Declaration
[JsonProperty("predictions")]
public virtual IList<object> Predictions { get; set; }
Property Value
Type | Description |
---|---|
IList<object> |