onnx_graph 0.1.0

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

    #[default]
    Undefined,
}