1 2 3 4 5 6 7 8 9
//! Automatic quantization for efficient web deployment pub mod algorithms; pub mod config; pub mod quantizer; // Re-export main types and functions pub use config::*; pub use quantizer::*;