1//! The `ml` module contains the core ml logic for gathering, training, and inference. 2 3#[cfg(feature = "ml_base")] 4pub mod base; 5 6#[cfg(feature = "ml_train")] 7pub mod train; 8 9#[cfg(feature = "ml_infer")] 10pub mod infer;