TensorInfo

classe finale pubblica TensorInfo

 Information about a Tensor necessary for feeding or retrieval.
 
Tipo di protocollo tensorflow.TensorInfo

Classi nidificate

classe TensorInfo.Builder
 Information about a Tensor necessary for feeding or retrieval. 
classe TensorInfo.CompositeTensor
 Generic encoding for composite tensors. 
interfaccia TensorInfo.CompositeTensorOrBuilder
classe TensorInfo.CooSparse
 For sparse tensors, The COO encoding stores a triple of values, indices,
 and shape. 
interfaccia TensorInfo.CooSparseOrBuilder
enum TensorInfo.EncodingCase

Costanti

int COMPOSITE_TENSOR_FIELD_NUMBER
int COO_SPARSE_FIELD_NUMBER
int DTYPE_FIELD_NUMBER
int NOME_CAMPO_NUMERO
int TENSOR_SHAPE_FIELD_NUMBER

Metodi pubblici

booleano
è uguale a (Oggetto oggetto)
TensorInfo.CompositeTensor
getTensoreComposito ()
 Generic encoding for CompositeTensors.
TensorInfo.CompositeTensorOrBuilder
getCompositeTensorOrBuilder ()
 Generic encoding for CompositeTensors.
TensorInfo.CooSparse
getCooSparse ()
 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 statico
TensorInfo
com.google.protobuf.Descriptors.Descriptor statico finale
Tipo di dati
getDtipo ()
.tensorflow.DataType dtype = 2;
int
getDtipoValore ()
.tensorflow.DataType dtype = 2;
TensorInfo.EncodingCase
Corda
getNome ()
 For dense `Tensor`s, the name of the tensor in the graph.
com.google.protobuf.ByteString
getNomeBytes ()
 For dense `Tensor`s, the name of the tensor in the graph.
int
TensorShapeProto
getTensorShape ()
 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.
finale com.google.protobuf.UnknownFieldSet
booleano
hasCompositeTensor ()
 Generic encoding for CompositeTensors.
booleano
hasCooSparse ()
 There are many possible encodings of sparse matrices
 (https://en.wikipedia.org/wiki/Sparse_matrix).
booleano
haTensorShape ()
 The static shape should be recorded here, to the extent that it can
 be known in advance.
int
booleano finale
TensorInfo.Builder statico
newBuilder (prototipo TensorInfo )
TensorInfo.Builder statico
TensorInfo.Builder
TensorInfo statico
parseDelimitedFrom (input InputStream)
TensorInfo statico
parseDelimitedFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo statico
parseFrom (dati ByteBuffer)
TensorInfo statico
parseFrom (input com.google.protobuf.CodedInputStream, estensione com.google.protobuf.ExtensionRegistryLiteRegistry)
TensorInfo statico
parseFrom (dati ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo statico
parseFrom (ingresso com.google.protobuf.CodedInputStream)
TensorInfo statico
parseFrom (byte[] dati, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo statico
parseFrom (dati com.google.protobuf.ByteString)
TensorInfo statico
parseFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
TensorInfo statico
parseFrom (dati com.google.protobuf.ByteString, estensione com.google.protobuf.ExtensionRegistryLiteRegistry)
statico
TensorInfo.Builder
vuoto
writeTo (output com.google.protobuf.CodedOutputStream)

Metodi ereditati

Costanti

public static final int COMPOSITE_TENSOR_FIELD_NUMBER

Valore costante: 5

public static final int COO_SPARSE_FIELD_NUMBER

Valore costante: 4

public static final int DTYPE_FIELD_NUMBER

Valore costante: 2

public static final int NAME_FIELD_NUMBER

Valore costante: 1

public static final int TENSOR_SHAPE_FIELD_NUMBER

Valore costante: 3

Metodi pubblici

booleano pubblico è uguale a (Oggetto obj)

public TensorInfo.CompositeTensor getCompositeTensor ()

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

public TensorInfo.CompositeTensorOrBuilder getCompositeTensorOrBuilder ()

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

public 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;

public 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;

pubblico statico TensorInfo getDefaultInstance ()

pubblico TensorInfo getDefaultInstanceForType ()

public static final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

public DataType getDtype ()

.tensorflow.DataType dtype = 2;

public int getDtypeValue ()

.tensorflow.DataType dtype = 2;

pubblico TensorInfo.EncodingCase getEncodingCase ()

stringa pubblica getName ()

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

pubblico com.google.protobuf.ByteString getNameBytes ()

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

pubblico getParserForType ()

public int getSerializedSize ()

public 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;

public 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;

pubblico finale com.google.protobuf.UnknownFieldSet getUnknownFields ()

pubblico booleano hasCompositeTensor ()

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

booleano pubblico hasCooSparse ()

 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;

pubblico booleano hasTensorShape ()

 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;

public int hashCode ()

public final booleano isInitialized ()

TensorInfo.Builder pubblico statico newBuilder (prototipo TensorInfo )

pubblico statico TensorInfo.Builder newBuilder ()

pubblico TensorInfo.Builder newBuilderForType ()

pubblico statico TensorInfo parseDelimitedFrom (input InputStream)

Lancia
IOException

pubblico statico TensorInfo parseDelimitedFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

parseFrom TensorInfo statico pubblico (dati ByteBuffer)

Lancia
InvalidProtocolBufferException

pubblico statico TensorInfo parseFrom (input com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

TensorInfo parseFrom pubblico statico (dati ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
InvalidProtocolBufferException

parseFrom TensorInfo statico pubblico (input com.google.protobuf.CodedInputStream)

Lancia
IOException

pubblico statico TensorInfo parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
InvalidProtocolBufferException

TensorInfo parseFrom pubblico statico (dati com.google.protobuf.ByteString)

Lancia
InvalidProtocolBufferException

pubblico statico TensorInfo parseFrom (input InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
IOException

pubblico statico TensorInfo parseFrom (dati com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lancia
InvalidProtocolBufferException

pubblico statico analizzatore ()

pubblico TensorInfo.Builder toBuilder ()

public void writeTo (output com.google.protobuf.CodedOutputStream)

Lancia
IOException