bitnet-quantize 0.2.1

Microsoft BitNet b1.58 quantization and inference for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Export functionality for BitNet models.
//!
//! This module provides export to various formats:
//! - GGUF (requires `gguf-export` feature)

#[cfg(feature = "gguf-export")]
mod gguf;

#[cfg(feature = "gguf-export")]
pub use gguf::export_gguf;