//! # Quantization-Aware Training (QAT)
//!
//! This module provides the building blocks for QAT:
//!
//! | Module | Contents |
//! |---------------|--------------------------------------------------|
//! | `observer` | MinMax, MovingAvg, Histogram calibration |
//! | `fake_quant` | FakeQuantize with Straight-Through Estimator |
pub use FakeQuantize;
pub use ;