rustyml 0.13.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Integration tests for the `utils` feature
//!
//! Crate root of the `utils` test binary (declared as a `[[test]]` target in
//! `Cargo.toml`, `autotests = false`). Per-topic files in this directory are submodules
//! Shared helpers live in [`common`]

mod common;

mod kernel_pca;
mod label_encoding;
mod normalize;
mod pca;
mod standardize;
mod t_sne;
mod train_test_split;