Interface TensorConnectionOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
TensorConnection, TensorConnection.Builder

public interface TensorConnectionOrBuilder extends MessageOrBuilder
  • Method Details

    • getFromTensor

      String getFromTensor()
      A tensor name. The value of this tensor will be substituted for
      the tensor named in `to_tensor`.
      
      string from_tensor = 1;
      Returns:
      The fromTensor.
    • getFromTensorBytes

      ByteString getFromTensorBytes()
      A tensor name. The value of this tensor will be substituted for
      the tensor named in `to_tensor`.
      
      string from_tensor = 1;
      Returns:
      The bytes for fromTensor.
    • getToTensor

      String getToTensor()
      A tensor name. The value of this tensor will be bound to the
      value of the tensor named in `from_tensor`.
      
      string to_tensor = 2;
      Returns:
      The toTensor.
    • getToTensorBytes

      ByteString getToTensorBytes()
      A tensor name. The value of this tensor will be bound to the
      value of the tensor named in `from_tensor`.
      
      string to_tensor = 2;
      Returns:
      The bytes for toTensor.