A tensor value type.
dtype
enum (DataType
)
The data type of tensor.
shape[]
string (int64 format)
Shape of the tensor.
boolVal[]
boolean
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.
stringVal[]
string
floatVal[]
number
doubleVal[]
number
uint64Val[]
string
listVal[]
object (Tensor
)
A list of tensor values.
structVal
map (key: string, value: object (Tensor
))
A map of string to tensor.
tensorVal
string (bytes format)
Serialized raw tensor content.
A base64-encoded string.
JSON representation |
---|
{ "dtype": enum ( |
DataType
data type of the tensor.
Enums | |
---|---|
DATA_TYPE_UNSPECIFIED |
Not a legal value for datatype. Used to indicate a datatype field has not been set. |
BOOL |
data types that all computation devices are expected to be capable to support. |
STRING |
|
FLOAT |
|
DOUBLE |
|
INT8 |
|
INT16 |
|
INT32 |
|
INT64 |
|
UINT8 |
|
UINT16 |
|
UINT32 |
|
UINT64 |