Elixir bindings for Microsoft ONNX Runtime.
This module intentionally mirrors the small Ortex facade: load a model with
load/3, then run inference with run/2.
Summary
Functions
Loads an ONNX model from disk.
execution_providers currently supports [:cpu]. optimization_level
maps to ONNX Runtime graph optimization levels:
0- disabled1- basic2- extended3- all
Runs a forward pass through a model.
A single input tensor may be passed directly. Multiple inputs should be passed
as a tuple in model input order. Outputs are returned as a tuple of Nx.Tensor
values backed by OnnxRuntime.Backend.