onnx_graph 0.1.0

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

use onnx_extractor::AttributeValue;

pub trait FromHashMap: Sized {
    fn from_hashmap(attrs: &HashMap<String, AttributeValue>) -> Result<Self>;
}