Package org.tensorflow.framework
Interface TensorConnectionOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TensorConnection,TensorConnection.Builder
public interface TensorConnectionOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.StringgetFromTensor()A tensor name.com.google.protobuf.ByteStringgetFromTensorBytes()A tensor name.java.lang.StringgetToTensor()A tensor name.com.google.protobuf.ByteStringgetToTensorBytes()A tensor name.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getFromTensor
java.lang.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
com.google.protobuf.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
java.lang.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
com.google.protobuf.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.
-