1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! # tinguely
//!
//! tinguely is a machine learning library implemented entirely in Rust.
//! This library is still in early stages of development.
//!
//! ## Usage
//!
//! The library usage is described well in the API documentation - including example code.
//!
//!
//! Add this to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! tinguely = "0.1.0"
//! ```
//!
//! Then import the modules and it is ready to be used:
//!
//! ``` rust
//! use tinguely as tg;
//!
//! ```
//! ## Features
//!
//! * Regression
//! * Linear regression
//! * Clustering
//! * DBSCAN
//! * K-Means
//! * Classification
//! * Logistic regression
//! * Support vector machine
pub use SupervisedLearn;
pub use UnsupervisedLearn;