Package org.tensorflow.framework
Interface AssetFileDefOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AssetFileDef,AssetFileDef.Builder
public interface AssetFileDefOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFilename()The filename within an assets directory.com.google.protobuf.ByteStringgetFilenameBytes()The filename within an assets directory.TensorInfogetTensorInfo()The tensor to bind the asset filename to.TensorInfoOrBuildergetTensorInfoOrBuilder()The tensor to bind the asset filename to.booleanhasTensorInfo()The tensor to bind the asset filename to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTensorInfo
boolean hasTensorInfo()
The tensor to bind the asset filename to.
.tensorflow.TensorInfo tensor_info = 1;- Returns:
- Whether the tensorInfo field is set.
-
getTensorInfo
TensorInfo getTensorInfo()
The tensor to bind the asset filename to.
.tensorflow.TensorInfo tensor_info = 1;- Returns:
- The tensorInfo.
-
getTensorInfoOrBuilder
TensorInfoOrBuilder getTensorInfoOrBuilder()
The tensor to bind the asset filename to.
.tensorflow.TensorInfo tensor_info = 1;
-
getFilename
java.lang.String getFilename()
The filename within an assets directory. Note: does not include the path prefix, i.e. directories. For an asset at /tmp/path/vocab.txt, the filename would be "vocab.txt".
string filename = 2;- Returns:
- The filename.
-
getFilenameBytes
com.google.protobuf.ByteString getFilenameBytes()
The filename within an assets directory. Note: does not include the path prefix, i.e. directories. For an asset at /tmp/path/vocab.txt, the filename would be "vocab.txt".
string filename = 2;- Returns:
- The bytes for filename.
-
-