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

org.tensorflow.framework.CallableOptionsOrBuilder 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/config.proto

package org.tensorflow.framework;

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

  /**
   * 
   * Tensors to be fed in the callable. Each feed is the name of a tensor.
   * 
* * repeated string feed = 1; * @return A list containing the feed. */ java.util.List getFeedList(); /** *
   * Tensors to be fed in the callable. Each feed is the name of a tensor.
   * 
* * repeated string feed = 1; * @return The count of feed. */ int getFeedCount(); /** *
   * Tensors to be fed in the callable. Each feed is the name of a tensor.
   * 
* * repeated string feed = 1; * @param index The index of the element to return. * @return The feed at the given index. */ java.lang.String getFeed(int index); /** *
   * Tensors to be fed in the callable. Each feed is the name of a tensor.
   * 
* * repeated string feed = 1; * @param index The index of the value to return. * @return The bytes of the feed at the given index. */ org.nd4j.shade.protobuf.ByteString getFeedBytes(int index); /** *
   * Fetches. A list of tensor names. The caller of the callable 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 = 2; * @return A list containing the fetch. */ java.util.List getFetchList(); /** *
   * Fetches. A list of tensor names. The caller of the callable 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 = 2; * @return The count of fetch. */ int getFetchCount(); /** *
   * Fetches. A list of tensor names. The caller of the callable 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 = 2; * @param index The index of the element to return. * @return The fetch at the given index. */ java.lang.String getFetch(int index); /** *
   * Fetches. A list of tensor names. The caller of the callable 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 = 2; * @param index The index of the value to return. * @return The bytes of the fetch at the given index. */ org.nd4j.shade.protobuf.ByteString getFetchBytes(int index); /** *
   * Target Nodes. A list of node names. The named nodes will be run by the
   * callable but their outputs will not be returned.
   * 
* * repeated string target = 3; * @return A list containing the target. */ java.util.List getTargetList(); /** *
   * Target Nodes. A list of node names. The named nodes will be run by the
   * callable but their outputs will not be returned.
   * 
* * repeated string target = 3; * @return The count of target. */ int getTargetCount(); /** *
   * Target Nodes. A list of node names. The named nodes will be run by the
   * callable but their outputs will not be returned.
   * 
* * repeated string target = 3; * @param index The index of the element to return. * @return The target at the given index. */ java.lang.String getTarget(int index); /** *
   * Target Nodes. A list of node names. The named nodes will be run by the
   * callable but their outputs will not be returned.
   * 
* * repeated string target = 3; * @param index The index of the value to return. * @return The bytes of the target at the given index. */ org.nd4j.shade.protobuf.ByteString getTargetBytes(int index); /** *
   * Options that will be applied to each run.
   * 
* * .tensorflow.RunOptions run_options = 4; * @return Whether the runOptions field is set. */ boolean hasRunOptions(); /** *
   * Options that will be applied to each run.
   * 
* * .tensorflow.RunOptions run_options = 4; * @return The runOptions. */ org.tensorflow.framework.RunOptions getRunOptions(); /** *
   * Options that will be applied to each run.
   * 
* * .tensorflow.RunOptions run_options = 4; */ org.tensorflow.framework.RunOptionsOrBuilder getRunOptionsOrBuilder(); /** *
   * Tensors to be connected in the callable. Each TensorConnection denotes
   * a pair of tensors in the graph, between which an edge will be created
   * in the callable.
   * 
* * repeated .tensorflow.TensorConnection tensor_connection = 5; */ java.util.List getTensorConnectionList(); /** *
   * Tensors to be connected in the callable. Each TensorConnection denotes
   * a pair of tensors in the graph, between which an edge will be created
   * in the callable.
   * 
* * repeated .tensorflow.TensorConnection tensor_connection = 5; */ org.tensorflow.framework.TensorConnection getTensorConnection(int index); /** *
   * Tensors to be connected in the callable. Each TensorConnection denotes
   * a pair of tensors in the graph, between which an edge will be created
   * in the callable.
   * 
* * repeated .tensorflow.TensorConnection tensor_connection = 5; */ int getTensorConnectionCount(); /** *
   * Tensors to be connected in the callable. Each TensorConnection denotes
   * a pair of tensors in the graph, between which an edge will be created
   * in the callable.
   * 
* * repeated .tensorflow.TensorConnection tensor_connection = 5; */ java.util.List getTensorConnectionOrBuilderList(); /** *
   * Tensors to be connected in the callable. Each TensorConnection denotes
   * a pair of tensors in the graph, between which an edge will be created
   * in the callable.
   * 
* * repeated .tensorflow.TensorConnection tensor_connection = 5; */ org.tensorflow.framework.TensorConnectionOrBuilder getTensorConnectionOrBuilder( int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy