Skip to main content

qualia_core_db/solvers/learning/preprocessing/
mod.rs

1//! Preprocessing for statistical learning — feature scaling and design-matrix prep.
2//! Reuses `statistics::descriptive`. Train/test partitioning lives with the
3//! `resampling` module (it shares the fold/shuffle machinery).
4
5pub mod scaling;
6
7pub use scaling::StandardScaler;