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
/// This module provides access to the boston housing dataset
pub mod boston_housing;
/// This module provides access to the diabetes dataset
pub mod diabetes;
/// This module provides access to the iris dataset
pub mod iris;
/// Internal module for raw dataset content
mod raw_data;
/// This module provides access to the titanic dataset
pub mod titanic;
/// This module provides access to the wine quality dataset (red wine and white wine)
pub mod wine_quality;

pub use boston_housing::*;
pub use diabetes::*;
pub use iris::*;
pub use titanic::*;
pub use wine_quality::*;