Package onnx
Interface Onnx.ValueInfoProtoOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder
,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Onnx.ValueInfoProto
,Onnx.ValueInfoProto.Builder
- Enclosing class:
- Onnx
public static interface Onnx.ValueInfoProtoOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDocString()
A human-readable documentation for this value.org.nd4j.shade.protobuf.ByteString
getDocStringBytes()
A human-readable documentation for this value.String
getName()
This field MUST be present in this version of the IR.org.nd4j.shade.protobuf.ByteString
getNameBytes()
This field MUST be present in this version of the IR.Onnx.TypeProto
getType()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.Onnx.TypeProtoOrBuilder
getTypeOrBuilder()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.boolean
hasType()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.-
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()
This field MUST be present in this version of the IR.
string name = 1;
- Returns:
- The name.
-
getNameBytes
org.nd4j.shade.protobuf.ByteString getNameBytes()
This field MUST be present in this version of the IR.
string name = 1;
- Returns:
- The bytes for name.
-
hasType
boolean hasType()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.
.onnx.TypeProto type = 2;
- Returns:
- Whether the type field is set.
-
getType
Onnx.TypeProto getType()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.
.onnx.TypeProto type = 2;
- Returns:
- The type.
-
getTypeOrBuilder
Onnx.TypeProtoOrBuilder getTypeOrBuilder()
This field MUST be present in this version of the IR for inputs and outputs of the top-level graph.
.onnx.TypeProto type = 2;
-
getDocString
String getDocString()
A human-readable documentation for this value. Markdown is allowed.
string doc_string = 3;
- Returns:
- The docString.
-
getDocStringBytes
org.nd4j.shade.protobuf.ByteString getDocStringBytes()
A human-readable documentation for this value. Markdown is allowed.
string doc_string = 3;
- Returns:
- The bytes for docString.
-
-