Package org.tensorflow.distruntime
Interface CreateSessionRequestOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateSessionRequest,CreateSessionRequest.Builder
public interface CreateSessionRequestOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigProtogetConfig()Configuration options.ConfigProtoOrBuildergetConfigOrBuilder()Configuration options.GraphDefgetGraphDef()The initial graph definition.GraphDefOrBuildergetGraphDefOrBuilder()The initial graph definition.StringgetTarget()The target string used from the client's perspective.org.nd4j.shade.protobuf.ByteStringgetTargetBytes()The target string used from the client's perspective.booleanhasConfig()Configuration options.booleanhasGraphDef()The initial graph definition.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGraphDef
boolean hasGraphDef()
The initial graph definition.
.tensorflow.GraphDef graph_def = 1;- Returns:
- Whether the graphDef field is set.
-
getGraphDef
GraphDef getGraphDef()
The initial graph definition.
.tensorflow.GraphDef graph_def = 1;- Returns:
- The graphDef.
-
getGraphDefOrBuilder
GraphDefOrBuilder getGraphDefOrBuilder()
The initial graph definition.
.tensorflow.GraphDef graph_def = 1;
-
hasConfig
boolean hasConfig()
Configuration options.
.tensorflow.ConfigProto config = 2;- Returns:
- Whether the config field is set.
-
getConfig
ConfigProto getConfig()
Configuration options.
.tensorflow.ConfigProto config = 2;- Returns:
- The config.
-
getConfigOrBuilder
ConfigProtoOrBuilder getConfigOrBuilder()
Configuration options.
.tensorflow.ConfigProto config = 2;
-
getTarget
String getTarget()
The target string used from the client's perspective.
string target = 3;- Returns:
- The target.
-
getTargetBytes
org.nd4j.shade.protobuf.ByteString getTargetBytes()
The target string used from the client's perspective.
string target = 3;- Returns:
- The bytes for target.
-
-