Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1SchemaPredictionResult

Represents a line of JSONL in the batch prediction output file.

Inheritance
object
GoogleCloudAiplatformV1beta1SchemaPredictionResult
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1SchemaPredictionResult : 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 GoogleCloudAiplatformV1beta1SchemaPredictionResultError Error { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1beta1SchemaPredictionResultError

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX