datarust 0.6.0

Scikit-learn-style preprocessing and classical ML in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! Feature selection.

/// Select the `k` best features according to a scoring function.
pub mod select_k_best;
/// Remove low-variance features.
pub mod variance_threshold;

pub use select_k_best::{ScoreFunc, SelectKBest};
pub use variance_threshold::VarianceThreshold;