tinguely 0.1.1

Machine learning library
Documentation
1
2
3
4
5
6
7
8
9
//! Clustering of unlabeled can be performed with the cluster module.
//!
//! Fore more information: <br>
//! <a href="https://en.wikipedia.org/wiki/Statistical_classification">https://en.wikipedia.org/wiki/Statistical_classification</a>
mod kmeans;
//mod dbscan;

pub use self::kmeans::{KMeans, KMeansInitializer};
//pub use self::dbscan::DBSCAN;