onnx_graph 0.1.2

ONNX graph parser and execution engine for deep neural networks
Documentation
#[repr(u8)]
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
pub enum UniqueId {
    Concat,
    Conv,
    Gemm,
    MaxPool,
    Reshape,
    Resize,
    Slice,
    Softmax,
    Split,
    Transpose,

    Unsqueeze,
    Cast,
    Flatten,
    Where,
    ConstantOfShape,
    Range,

    LessOrEqual,
    Less,
    GreaterOrEqual,
    Greater,
    Equal,

    Sub,
    Mul,
    Div,
    Add,
    And,
    Pow,
    Sin,
    Cos,

    Sqrt,
    Expand,

    IsNan,

    ArgMax,
    Shape,
    Gather,

    Neg,

    //Activation
    Sigmoid,
    Silu,
    Relu,
    LeakyRelu,

    #[default]
    Undefined,
}