All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.distruntime.RunStepRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto

package org.tensorflow.distruntime;

public interface RunStepRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tensorflow.RunStepRequest)
    org.nd4j.shade.protobuf.MessageOrBuilder {

  /**
   * 
   * REQUIRED: session_handle must be returned by a CreateSession call
   * to the same master service.
   * 
* * string session_handle = 1; */ java.lang.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(); /** *
   * Tensors to be fed in the step. Each feed is a named tensor.
   * 
* * repeated .tensorflow.NamedTensorProto feed = 2; */ java.util.List getFeedList(); /** *
   * Tensors to be fed in the step. Each feed is a named tensor.
   * 
* * repeated .tensorflow.NamedTensorProto feed = 2; */ org.tensorflow.framework.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; */ java.util.List getFeedOrBuilderList(); /** *
   * Tensors to be fed in the step. Each feed is a named tensor.
   * 
* * repeated .tensorflow.NamedTensorProto feed = 2; */ org.tensorflow.framework.NamedTensorProtoOrBuilder getFeedOrBuilder( 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; */ java.util.List 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; */ java.lang.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); /** *
   * 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; */ java.util.List 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; */ java.lang.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); /** *
   * Options for the run call.
   * 
* * .tensorflow.RunOptions options = 5; */ boolean hasOptions(); /** *
   * Options for the run call.
   * 
* * .tensorflow.RunOptions options = 5; */ org.tensorflow.framework.RunOptions getOptions(); /** *
   * Options for the run call.
   * 
* * .tensorflow.RunOptions options = 5; */ org.tensorflow.framework.RunOptionsOrBuilder getOptionsOrBuilder(); /** *
   * Partial run handle (optional). If specified, this will be a partial run
   * execution, run up to the specified fetches.
   * 
* * string partial_run_handle = 6; */ java.lang.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(); /** *
   * 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; */ boolean getStoreErrorsInResponseBody(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy