edge-transformers 0.1.2

A Rust wrapper over ONNXRuntime that implements Huggingface's Optimum pipelines for inference and generates bindings for C# and C.
Documentation
#![doc = include_str!("../README.md")]

pub use ort;

pub use common::*;
pub use error::*;
pub use ffi::*;
pub use modeling::*;
pub use pipelines::*;
pub use sampling::*;

pub(crate) mod common;
mod error;
pub mod ffi;
pub mod hf_hub;
pub mod modeling;
pub mod pipelines;
pub mod sampling;
pub mod tokenizer;