Class GoogleCloudAiplatformV1beta1ExplainResponse
Response message for PredictionService.Explain.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1ExplainResponse : IDirectResponseSchema
Properties
ConcurrentExplanations
This field stores the results of the explanations run in parallel with The default explanation strategy/method.
Declaration
[JsonProperty("concurrentExplanations")]
public virtual IDictionary<string, GoogleCloudAiplatformV1beta1ExplainResponseConcurrentExplanation> ConcurrentExplanations { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, GoogleCloudAiplatformV1beta1ExplainResponseConcurrentExplanation> |
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<GoogleCloudAiplatformV1beta1Explanation> Explanations { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1beta1Explanation> |
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> |