[go: up one dir, main page]

smartcore 0.4.8

Machine Learning in Rust.
Documentation
1
2
3
4
5
6
7
/// Transform a data matrix by replacing all categorical variables with their one-hot vector equivalents
pub mod categorical;
/// Preprocess numerical matrices.
pub mod numerical;
/// Encode a series (column, array) of categorical variables as one-hot vectors
pub mod series_encoder;
mod traits;