Show / Hide Table of Contents

Class GoogleCloudAiplatformV1Tensor

A tensor value type.

Inheritance
object
GoogleCloudAiplatformV1Tensor
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.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1Tensor : IDirectResponseSchema

Properties

BoolVal

Type specific representations that make it easy to create tensor protos in all languages. Only the representation corresponding to "dtype" can be set. The values hold the flattened representation of the tensor in row major order. BOOL

Declaration
[JsonProperty("boolVal")]
public virtual IList<bool?> BoolVal { get; set; }
Property Value
Type Description
IList<bool?>

BytesVal

STRING

Declaration
[JsonProperty("bytesVal")]
public virtual IList<string> BytesVal { get; set; }
Property Value
Type Description
IList<string>

DoubleVal

DOUBLE

Declaration
[JsonProperty("doubleVal")]
public virtual IList<double?> DoubleVal { get; set; }
Property Value
Type Description
IList<double?>

Dtype

The data type of tensor.

Declaration
[JsonProperty("dtype")]
public virtual string Dtype { 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

FloatVal

FLOAT

Declaration
[JsonProperty("floatVal")]
public virtual IList<float?> FloatVal { get; set; }
Property Value
Type Description
IList<float?>

Int64Val

INT64

Declaration
[JsonProperty("int64Val")]
public virtual IList<long?> Int64Val { get; set; }
Property Value
Type Description
IList<long?>

IntVal

INT_8 INT_16 INT_32

Declaration
[JsonProperty("intVal")]
public virtual IList<int?> IntVal { get; set; }
Property Value
Type Description
IList<int?>

ListVal

A list of tensor values.

Declaration
[JsonProperty("listVal")]
public virtual IList<GoogleCloudAiplatformV1Tensor> ListVal { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1Tensor>

Shape

Shape of the tensor.

Declaration
[JsonProperty("shape")]
public virtual IList<long?> Shape { get; set; }
Property Value
Type Description
IList<long?>

StringVal

STRING

Declaration
[JsonProperty("stringVal")]
public virtual IList<string> StringVal { get; set; }
Property Value
Type Description
IList<string>

StructVal

A map of string to tensor.

Declaration
[JsonProperty("structVal")]
public virtual IDictionary<string, GoogleCloudAiplatformV1Tensor> StructVal { get; set; }
Property Value
Type Description
IDictionary<string, GoogleCloudAiplatformV1Tensor>

TensorVal

Serialized raw tensor content.

Declaration
[JsonProperty("tensorVal")]
public virtual string TensorVal { get; set; }
Property Value
Type Description
string

Uint64Val

UINT64

Declaration
[JsonProperty("uint64Val")]
public virtual IList<ulong?> Uint64Val { get; set; }
Property Value
Type Description
IList<ulong?>

UintVal

UINT8 UINT16 UINT32

Declaration
[JsonProperty("uintVal")]
public virtual IList<long?> UintVal { get; set; }
Property Value
Type Description
IList<long?>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX