Package org.tensorflow.framework
Interface ApiDef.ArgOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ApiDef.Arg,ApiDef.Arg.Builder
- Enclosing class:
- ApiDef
public static interface ApiDef.ArgOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Note: this will replace any inherited arg doc.org.nd4j.shade.protobuf.ByteStringgetDescriptionBytes()Note: this will replace any inherited arg doc.StringgetName()string name = 1;org.nd4j.shade.protobuf.ByteStringgetNameBytes()string name = 1;StringgetRenameTo()Change the name used to access this arg in the API from what is used in the GraphDef.org.nd4j.shade.protobuf.ByteStringgetRenameToBytes()Change the name used to access this arg in the API from what is used in the GraphDef.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
string name = 1;- Returns:
- The name.
-
getNameBytes
org.nd4j.shade.protobuf.ByteString getNameBytes()
string name = 1;- Returns:
- The bytes for name.
-
getRenameTo
String getRenameTo()
Change the name used to access this arg in the API from what is used in the GraphDef. Note that these names in `backticks` will also be replaced in the summary & description fields.
string rename_to = 2;- Returns:
- The renameTo.
-
getRenameToBytes
org.nd4j.shade.protobuf.ByteString getRenameToBytes()
Change the name used to access this arg in the API from what is used in the GraphDef. Note that these names in `backticks` will also be replaced in the summary & description fields.
string rename_to = 2;- Returns:
- The bytes for renameTo.
-
getDescription
String getDescription()
Note: this will replace any inherited arg doc. There is no current way of modifying arg descriptions (other than replacing them entirely) as can be done with op descriptions.
string description = 3;- Returns:
- The description.
-
getDescriptionBytes
org.nd4j.shade.protobuf.ByteString getDescriptionBytes()
Note: this will replace any inherited arg doc. There is no current way of modifying arg descriptions (other than replacing them entirely) as can be done with op descriptions.
string description = 3;- Returns:
- The bytes for description.
-
-