feat: documents k-means

This commit is contained in:
Volodymyr Orlov
2020-09-01 19:52:40 -07:00
parent 108686cee7
commit d024aa0967
2 changed files with 69 additions and 0 deletions
+6
View File
@@ -1 +1,7 @@
//! # Clustering
//!
//! Clustering is the type of unsupervised learning where you divide the population or data points into a number of groups such that data points in the same groups
//! are more similar to other data points in the same group than those in other groups. In simple words, the aim is to segregate groups with similar traits and assign them into clusters.
/// An iterative clustering algorithm that aims to find local maxima in each iteration.
pub mod kmeans;