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
15
16
17
//! Utility functions for the crate.

pub mod display;
pub mod distance;
pub mod features;
pub mod io;
pub mod kernels;
pub mod math;

pub use self::display::{
    debug_option, print_knn_search_algorithm, print_knn_weight_function, print_option,
};
pub use self::distance::Distance;
pub use self::features::{FeatureError, interaction_features, polynomial_features};
pub use self::io::{CsvError, load_csv_features, load_labeled_csv};
pub use self::kernels::{Kernel, SmartcoreKernel};
pub use self::math::elementwise_multiply;