onnx_graph 0.1.2

ONNX graph parser and execution engine for deep neural networks
Documentation
1
2
3
4
5
6
7
use anyhow::Result;

use onnx_extractor::OnnxOperation;

pub trait FromOnnxOperation: Sized {
    fn from_onnx_operation(elem: &OnnxOperation) -> Result<Self>;
}