Package onnx

Interface OnnxOperators.OperatorProtoOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDocString()
      A human-readable documentation for this operator.
      org.nd4j.shade.protobuf.ByteString getDocStringBytes()
      A human-readable documentation for this operator.
      String getOpType()
      The name of the operator within a domain.
      org.nd4j.shade.protobuf.ByteString getOpTypeBytes()
      The name of the operator within a domain.
      long getSinceVersion()
      The version of the operator set that first introduced this operator.
      Onnx.OperatorStatus getStatus()
      This field indicates whether the syntax, semantics, or presence of this operator is in an experimental or stable stage.
      int getStatusValue()
      This field indicates whether the syntax, semantics, or presence of this operator is in an experimental or stable stage.
      • Methods inherited from interface org.nd4j.shade.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getOpType

        String getOpType()
         The name of the operator within a domain.
         This field MUST be present in this version of the IR.
         
        string op_type = 1;
        Returns:
        The opType.
      • getOpTypeBytes

        org.nd4j.shade.protobuf.ByteString getOpTypeBytes()
         The name of the operator within a domain.
         This field MUST be present in this version of the IR.
         
        string op_type = 1;
        Returns:
        The bytes for opType.
      • getSinceVersion

        long getSinceVersion()
         The version of the operator set that first introduced this
         operator. This value MUST be the same value as the
         opset_version of the operator set that first published this operator.
         Subsequent versions of the operator set MUST NOT alter the signature
         or semantics of the operator once published as STABLE.
         This field MUST be present in this version of the IR.
         
        int64 since_version = 2;
        Returns:
        The sinceVersion.
      • getStatusValue

        int getStatusValue()
         This field indicates whether the syntax, semantics, or presence
         of this operator is in an experimental or stable stage. Once an
         operator is published as STABLE, it's syntax and semantics MUST NOT
         change in subsequent versions of the operator set.
         When an operator is published as EXPERIMENTAL, the syntax and semantics
         of the operator MAY change across operator set versions.
         Operators "become" stable by deprecating the experimental version and
         introducing a new stable operator with the same op_type.
         
        .onnx.OperatorStatus status = 3;
        Returns:
        The enum numeric value on the wire for status.
      • getStatus

        Onnx.OperatorStatus getStatus()
         This field indicates whether the syntax, semantics, or presence
         of this operator is in an experimental or stable stage. Once an
         operator is published as STABLE, it's syntax and semantics MUST NOT
         change in subsequent versions of the operator set.
         When an operator is published as EXPERIMENTAL, the syntax and semantics
         of the operator MAY change across operator set versions.
         Operators "become" stable by deprecating the experimental version and
         introducing a new stable operator with the same op_type.
         
        .onnx.OperatorStatus status = 3;
        Returns:
        The status.
      • getDocString

        String getDocString()
         A human-readable documentation for this operator. Markdown is allowed.
         
        string doc_string = 10;
        Returns:
        The docString.
      • getDocStringBytes

        org.nd4j.shade.protobuf.ByteString getDocStringBytes()
         A human-readable documentation for this operator. Markdown is allowed.
         
        string doc_string = 10;
        Returns:
        The bytes for docString.