1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/*!
 * If this is your first time using Easy ML you should check out some of the examples
 * to get an overview of how to use matrices then study the
 * [Matrix](./matrices/struct.Matrix.html) type for what you need.
 *
 * # Examples
 * - [Linear Regression](./linear_regression/index.html)
 * - [k-means Clustering](./k_means/index.html)
 * - [Logistic Regression](./logistic_regression/index.html)
 */

pub mod numeric;
pub mod linear_algebra;
pub mod matrices;
pub mod distributions;

// examples
pub mod linear_regression;
pub mod using_custom_types;
pub mod k_means;
pub mod logistic_regression;