tinguely 0.1.0

Machine learning library
Documentation
//! # 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 mod cluster;
pub mod model;
pub mod regression;
pub mod classification;

pub use model::SupervisedLearn;
pub use model::UnsupervisedLearn;