Class GoogleCloudAiplatformV1SchemaPredictionResult
Represents a line of JSONL in the batch prediction output file.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1SchemaPredictionResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Error
The error result. Do not set prediction if this is set.
Declaration
[JsonProperty("error")]
public virtual GoogleCloudAiplatformV1SchemaPredictionResultError Error { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1SchemaPredictionResultError |
Instance
User's input instance. Struct is used here instead of Any so that JsonFormat does not append an extra "@type" field when we convert the proto to JSON.
Declaration
[JsonProperty("instance")]
public virtual IDictionary<string, object> Instance { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
Key
Optional user-provided key from the input instance.
Declaration
[JsonProperty("key")]
public virtual string Key { get; set; }
Property Value
Type | Description |
---|---|
string |
Prediction
The prediction result. Value is used here instead of Any so that JsonFormat does not append an extra "@type" field when we convert the proto to JSON and so we can represent array of objects. Do not set error if this is set.
Declaration
[JsonProperty("prediction")]
public virtual object Prediction { get; set; }
Property Value
Type | Description |
---|---|
object |