Package org.tensorflow.framework
Interface VariantTensorDataProtoOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VariantTensorDataProto,VariantTensorDataProto.Builder
public interface VariantTensorDataProtoOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.nd4j.shade.protobuf.ByteStringgetMetadata()Portions of the object that are not Tensors.TensorProtogetTensors(int index)Tensors contained within objects being serialized.intgetTensorsCount()Tensors contained within objects being serialized.List<TensorProto>getTensorsList()Tensors contained within objects being serialized.TensorProtoOrBuildergetTensorsOrBuilder(int index)Tensors contained within objects being serialized.List<? extends TensorProtoOrBuilder>getTensorsOrBuilderList()Tensors contained within objects being serialized.StringgetTypeName()Name of the type of objects being serialized.org.nd4j.shade.protobuf.ByteStringgetTypeNameBytes()Name of the type of objects being serialized.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeName
String getTypeName()
Name of the type of objects being serialized.
string type_name = 1;- Returns:
- The typeName.
-
getTypeNameBytes
org.nd4j.shade.protobuf.ByteString getTypeNameBytes()
Name of the type of objects being serialized.
string type_name = 1;- Returns:
- The bytes for typeName.
-
getMetadata
org.nd4j.shade.protobuf.ByteString getMetadata()
Portions of the object that are not Tensors.
bytes metadata = 2;- Returns:
- The metadata.
-
getTensorsList
List<TensorProto> getTensorsList()
Tensors contained within objects being serialized.
repeated .tensorflow.TensorProto tensors = 3;
-
getTensors
TensorProto getTensors(int index)
Tensors contained within objects being serialized.
repeated .tensorflow.TensorProto tensors = 3;
-
getTensorsCount
int getTensorsCount()
Tensors contained within objects being serialized.
repeated .tensorflow.TensorProto tensors = 3;
-
getTensorsOrBuilderList
List<? extends TensorProtoOrBuilder> getTensorsOrBuilderList()
Tensors contained within objects being serialized.
repeated .tensorflow.TensorProto tensors = 3;
-
getTensorsOrBuilder
TensorProtoOrBuilder getTensorsOrBuilder(int index)
Tensors contained within objects being serialized.
repeated .tensorflow.TensorProto tensors = 3;
-
-