public interface RunStepRequestOrBuilder
extends org.nd4j.shade.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
NamedTensorProto |
getFeed(int index)
Tensors to be fed in the step.
|
int |
getFeedCount()
Tensors to be fed in the step.
|
List<NamedTensorProto> |
getFeedList()
Tensors to be fed in the step.
|
NamedTensorProtoOrBuilder |
getFeedOrBuilder(int index)
Tensors to be fed in the step.
|
List<? extends NamedTensorProtoOrBuilder> |
getFeedOrBuilderList()
Tensors to be fed in the step.
|
String |
getFetch(int index)
Fetches.
|
org.nd4j.shade.protobuf.ByteString |
getFetchBytes(int index)
Fetches.
|
int |
getFetchCount()
Fetches.
|
List<String> |
getFetchList()
Fetches.
|
RunOptions |
getOptions()
Options for the run call.
|
RunOptionsOrBuilder |
getOptionsOrBuilder()
Options for the run call.
|
String |
getPartialRunHandle()
Partial run handle (optional).
|
org.nd4j.shade.protobuf.ByteString |
getPartialRunHandleBytes()
Partial run handle (optional).
|
String |
getSessionHandle()
REQUIRED: session_handle must be returned by a CreateSession call
to the same master service.
|
org.nd4j.shade.protobuf.ByteString |
getSessionHandleBytes()
REQUIRED: session_handle must be returned by a CreateSession call
to the same master service.
|
boolean |
getStoreErrorsInResponseBody()
If true then some errors, e.g., execution errors that have long
error messages, may return an OK RunStepResponse with the actual
error saved in the status_code/status_error_message fields of the
response body.
|
String |
getTarget(int index)
Target Nodes.
|
org.nd4j.shade.protobuf.ByteString |
getTargetBytes(int index)
Target Nodes.
|
int |
getTargetCount()
Target Nodes.
|
List<String> |
getTargetList()
Target Nodes.
|
boolean |
hasOptions()
Options for the run call.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
String getSessionHandle()
REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
string session_handle = 1;
org.nd4j.shade.protobuf.ByteString getSessionHandleBytes()
REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
string session_handle = 1;
List<NamedTensorProto> getFeedList()
Tensors to be fed in the step. Each feed is a named tensor.
repeated .tensorflow.NamedTensorProto feed = 2;
NamedTensorProto getFeed(int index)
Tensors to be fed in the step. Each feed is a named tensor.
repeated .tensorflow.NamedTensorProto feed = 2;
int getFeedCount()
Tensors to be fed in the step. Each feed is a named tensor.
repeated .tensorflow.NamedTensorProto feed = 2;
List<? extends NamedTensorProtoOrBuilder> getFeedOrBuilderList()
Tensors to be fed in the step. Each feed is a named tensor.
repeated .tensorflow.NamedTensorProto feed = 2;
NamedTensorProtoOrBuilder getFeedOrBuilder(int index)
Tensors to be fed in the step. Each feed is a named tensor.
repeated .tensorflow.NamedTensorProto feed = 2;
List<String> getFetchList()
Fetches. A list of tensor names. The caller expects a tensor to be returned for each fetch[i] (see RunStepResponse.tensor). The order of specified fetches does not change the execution order.
repeated string fetch = 3;
int getFetchCount()
Fetches. A list of tensor names. The caller expects a tensor to be returned for each fetch[i] (see RunStepResponse.tensor). The order of specified fetches does not change the execution order.
repeated string fetch = 3;
String getFetch(int index)
Fetches. A list of tensor names. The caller expects a tensor to be returned for each fetch[i] (see RunStepResponse.tensor). The order of specified fetches does not change the execution order.
repeated string fetch = 3;
org.nd4j.shade.protobuf.ByteString getFetchBytes(int index)
Fetches. A list of tensor names. The caller expects a tensor to be returned for each fetch[i] (see RunStepResponse.tensor). The order of specified fetches does not change the execution order.
repeated string fetch = 3;
List<String> getTargetList()
Target Nodes. A list of node names. The named nodes will be run to but their outputs will not be fetched.
repeated string target = 4;
int getTargetCount()
Target Nodes. A list of node names. The named nodes will be run to but their outputs will not be fetched.
repeated string target = 4;
String getTarget(int index)
Target Nodes. A list of node names. The named nodes will be run to but their outputs will not be fetched.
repeated string target = 4;
org.nd4j.shade.protobuf.ByteString getTargetBytes(int index)
Target Nodes. A list of node names. The named nodes will be run to but their outputs will not be fetched.
repeated string target = 4;
boolean hasOptions()
Options for the run call.
.tensorflow.RunOptions options = 5;
RunOptions getOptions()
Options for the run call.
.tensorflow.RunOptions options = 5;
RunOptionsOrBuilder getOptionsOrBuilder()
Options for the run call.
.tensorflow.RunOptions options = 5;
String getPartialRunHandle()
Partial run handle (optional). If specified, this will be a partial run execution, run up to the specified fetches.
string partial_run_handle = 6;
org.nd4j.shade.protobuf.ByteString getPartialRunHandleBytes()
Partial run handle (optional). If specified, this will be a partial run execution, run up to the specified fetches.
string partial_run_handle = 6;
boolean getStoreErrorsInResponseBody()
If true then some errors, e.g., execution errors that have long error messages, may return an OK RunStepResponse with the actual error saved in the status_code/status_error_message fields of the response body. This is a workaround since the RPC subsystem may truncate long metadata messages.
bool store_errors_in_response_body = 7;
Copyright © 2019. All rights reserved.