automl 0.3.0

Automated machine learning for classification and regression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Algorithm enumerations and helpers for model training.

pub mod regression;
pub use regression::RegressionAlgorithm;

pub mod classification;
pub use classification::ClassificationAlgorithm;

pub mod clustering;
pub use clustering::ClusteringAlgorithm;

/// Shared training utilities for supervised algorithms.
pub mod supervised_train;
pub use supervised_train::SupervisedTrain;