You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support loading non-string models from memory (#107)
* Expose setting input/getting output tensors by index
* Support loading non-string models from memory
* Improve ergonomics
* Use explicit Option arg
* Remove 2022.3.0 from matrix
let model = b"\x08\x07\x12\nonnx-wally:j\n*\n\x06inputs\x12\x07outputs\x1a\ridentity_node\"\x08Identity\x12\x0bno-op-modelZ\x16\n\x06inputs\x12\x0c\n\n\x08\x01\x12\x06\n\x00\n\x02\x08\x02b\x17\n\x07outputs\x12\x0c\n\n\x08\x01\x12\x06\n\x00\n\x02\x08\x02B\x02\x10\x0c";
102
+
letmut core = Core::new().unwrap();
103
+
let model = core.read_model_from_buffer(model,None);
0 commit comments