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 TypeMethodDescriptionA tensor name.com.google.protobuf.ByteStringA tensor name.A tensor name.com.google.protobuf.ByteStringA tensor name.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
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
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
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.
-