TensorInfo

clase final pública TensorInfo

 Information about a Tensor necessary for feeding or retrieval.
 
Protobuf tipo tensorflow.TensorInfo

Clases anidadas

clase TensorInfo.Constructor
 Information about a Tensor necessary for feeding or retrieval. 
clase TensorInfo.CompositeTensor
 Generic encoding for composite tensors. 
interfaz TensorInfo.CompositeTensorOrBuilder
clase TensorInfo.CooSparse
 For sparse tensors, The COO encoding stores a triple of values, indices,
 and shape. 
interfaz TensorInfo.CooSparseOrBuilder
enumeración TensorInfo.EncodingCase

Constantes

En t COMPOSITE_TENSOR_FIELD_NUMBER
En t COO_SPARSE_FIELD_NUMBER
En t DTYPE_FIELD_NUMBER
En t NOMBRE_CAMPO_NÚMERO
En t TENSOR_SHAPE_FIELD_NUMBER

Métodos públicos

booleano
es igual (Objeto obj)
TensorInfo.CompositeTensor
getCompositeTensor ()
 Generic encoding for CompositeTensors.
TensorInfo.CompositeTensorOrBuilder
getCompositeTensorOrBuilder ()
 Generic encoding for CompositeTensors.
TensorInfo.CooSparse
obtenerCooSparse ()
 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).
TensorInfo.CooSparseOrBuilder
getCooSparseOrBuilder ()
 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).
TensorInfo estática
TensorInfo
com.google.protobuf.Descriptors.Descriptor estático final
Tipo de datos
obtener tipo D ()
.tensorflow.DataType dtype = 2;
En t
getDtypeValue ()
.tensorflow.DataType dtype = 2;
TensorInfo.EncodingCase
Cadena
obtenerNombre ()
 For dense `Tensor`s, the name of the tensor in the graph.
com.google.protobuf.ByteString
getNombreBytes ()
 For dense `Tensor`s, the name of the tensor in the graph.
En t
TensorShapeProto
obtener forma tensor ()
 The static shape should be recorded here, to the extent that it can
 be known in advance.
TensorShapeProtoOrBuilder
getTensorShapeOrBuilder ()
 The static shape should be recorded here, to the extent that it can
 be known in advance.
com.google.protobuf.UnknownFieldSet final
booleano
tieneCompositeTensor ()
 Generic encoding for CompositeTensors.
booleano
tieneCooSparse ()
 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).
booleano
tieneTensorShape ()
 The static shape should be recorded here, to the extent that it can
 be known in advance.
En t
booleano final
TensorInfo.Builder estático
TensorInfo.Builder estático
TensorInfo.Constructor
TensorInfo estática
parseDelimitedFrom (entrada de InputStream)
TensorInfo estática
parseDelimitedFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo estática
parseFrom (datos de ByteBuffer)
TensorInfo estática
parseFrom (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensiónRegistry)
TensorInfo estática
parseFrom (datos de ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo estática
parseFrom (entrada com.google.protobuf.CodedInputStream)
TensorInfo estática
parseFrom (byte[] datos, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo estática
parseFrom (datos com.google.protobuf.ByteString)
TensorInfo estática
parseFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo estática
parseFrom (com.google.protobuf.ByteString datos, com.google.protobuf.ExtensionRegistryLite extensiónRegistry)
estático
TensorInfo.Constructor
vacío
writeTo (salida de com.google.protobuf.CodedOutputStream)

Métodos heredados

Constantes

int final estático público COMPOSITE_TENSOR_FIELD_NUMBER

Valor constante: 5

público estático final int COO_SPARSE_FIELD_NUMBER

Valor constante: 4

int final estático público DTYPE_FIELD_NUMBER

Valor constante: 2

público estático final int NAME_FIELD_NUMBER

Valor constante: 1

int final estático público TENSOR_SHAPE_FIELD_NUMBER

Valor constante: 3

Métodos públicos

público booleano es igual (Objeto obj)

público TensorInfo.CompositeTensor getCompositeTensor ()

 Generic encoding for CompositeTensors.
 
.tensorflow.TensorInfo.CompositeTensor composite_tensor = 5;

público TensorInfo.CompositeTensorOrBuilder getCompositeTensorOrBuilder ()

 Generic encoding for CompositeTensors.
 
.tensorflow.TensorInfo.CompositeTensor composite_tensor = 5;

público TensorInfo.CooSparse getCooSparse ()

 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).  Currently, TensorFlow
 uses only the COO encoding.  This is supported and documented in the
 SparseTensor Python class.
 
.tensorflow.TensorInfo.CooSparse coo_sparse = 4;

público TensorInfo.CooSparseOrBuilder getCooSparseOrBuilder ()

 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).  Currently, TensorFlow
 uses only the COO encoding.  This is supported and documented in the
 SparseTensor Python class.
 
.tensorflow.TensorInfo.CooSparse coo_sparse = 4;

público estático TensorInfo getDefaultInstance ()

público TensorInfo getDefaultInstanceForType ()

público estático final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

tipo de datos público getDtype ()

.tensorflow.DataType dtype = 2;

público int getDtypeValue ()

.tensorflow.DataType dtype = 2;

público TensorInfo.EncodingCase getEncodingCase ()

cadena pública getName ()

 For dense `Tensor`s, the name of the tensor in the graph.
 
string name = 1;

público com.google.protobuf.ByteString getNameBytes ()

 For dense `Tensor`s, the name of the tensor in the graph.
 
string name = 1;

público getParserForType ()

público int getSerializedSize ()

público TensorShapeProto getTensorShape ()

 The static shape should be recorded here, to the extent that it can
 be known in advance.  In the case of a SparseTensor, this field describes
 the logical shape of the represented tensor (aka dense_shape).
 
.tensorflow.TensorShapeProto tensor_shape = 3;

público TensorShapeProtoOrBuilder getTensorShapeOrBuilder ()

 The static shape should be recorded here, to the extent that it can
 be known in advance.  In the case of a SparseTensor, this field describes
 the logical shape of the represented tensor (aka dense_shape).
 
.tensorflow.TensorShapeProto tensor_shape = 3;

público final com.google.protobuf.UnknownFieldSet getUnknownFields ()

hasCompositeTensor público booleano ()

 Generic encoding for CompositeTensors.
 
.tensorflow.TensorInfo.CompositeTensor composite_tensor = 5;

hasCooSparse booleano público ()

 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).  Currently, TensorFlow
 uses only the COO encoding.  This is supported and documented in the
 SparseTensor Python class.
 
.tensorflow.TensorInfo.CooSparse coo_sparse = 4;

hasTensorShape booleano público ()

 The static shape should be recorded here, to the extent that it can
 be known in advance.  In the case of a SparseTensor, this field describes
 the logical shape of the represented tensor (aka dense_shape).
 
.tensorflow.TensorShapeProto tensor_shape = 3;

código hash int público ()

público final booleano isInitialized ()

público estático TensorInfo.Builder newBuilder (prototipo de TensorInfo )

público estático TensorInfo.Builder newBuilder ()

público TensorInfo.Builder newBuilderForType ()

parseDelimitedFrom de TensorInfo estático público (entrada de InputStream)

Lanza
IOExcepción

público estático TensorInfo parseDelimitedFrom (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
IOExcepción

parseFrom público estático de TensorInfo (datos ByteBuffer)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático de TensorInfo (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
IOExcepción

parseFrom público estático de TensorInfo (datos de ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático de TensorInfo (entrada de com.google.protobuf.CodedInputStream)

Lanza
IOExcepción

parseFrom público estático de TensorInfo (byte[] datos, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático de TensorInfo (datos com.google.protobuf.ByteString)

Lanza
Excepción de buffer de protocolo no válido

parseFrom público estático de TensorInfo (entrada de InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
IOExcepción

parseFrom público estático de TensorInfo (datos com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lanza
Excepción de buffer de protocolo no válido

estática pública analizador ()

público TensorInfo.Builder toBuilder ()

escritura vacía pública (salida de com.google.protobuf.CodedOutputStream)

Lanza
IOExcepción