rustyml 0.11.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
16
17
18
/// Prelude module for datasets
#[cfg(feature = "dataset")]
pub mod dataset_prelude;
/// Prelude module for machine learning functionality
#[cfg(feature = "machine_learning")]
pub mod machine_learning_prelude;
/// Prelude module for mathematical operations
#[cfg(feature = "math")]
pub mod math_prelude;
/// Prelude module for metric functions
#[cfg(feature = "metric")]
pub mod metric_prelude;
/// Prelude module for neural network framework
#[cfg(feature = "neural_network")]
pub mod neural_network_prelude;
/// Prelude module for utility functions.
#[cfg(feature = "utility")]
pub mod utility_prelude;