Package org.tensorflow.framework
Interface GradientDefOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GradientDef,GradientDef.Builder
public interface GradientDefOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFunctionName()The function name.com.google.protobuf.ByteStringgetFunctionNameBytes()The function name.java.lang.StringgetGradientFunc()The gradient function's name.com.google.protobuf.ByteStringgetGradientFuncBytes()The gradient function's name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFunctionName
java.lang.String getFunctionName()
The function name.
string function_name = 1;- Returns:
- The functionName.
-
getFunctionNameBytes
com.google.protobuf.ByteString getFunctionNameBytes()
The function name.
string function_name = 1;- Returns:
- The bytes for functionName.
-
getGradientFunc
java.lang.String getGradientFunc()
The gradient function's name.
string gradient_func = 2;- Returns:
- The gradientFunc.
-
getGradientFuncBytes
com.google.protobuf.ByteString getGradientFuncBytes()
The gradient function's name.
string gradient_func = 2;- Returns:
- The bytes for gradientFunc.
-
-