kmeans-0.1.0 has been yanked.
kmeans
kmeans is a small and fast library for k-means clustering calculations. Here is a small example, using kmean++ as initialization method:
use *;
Datastructures
For performance-reasons, all calculations are done on bare vectors, using hand-written SIMD intrinsics from the packed_simd crate. All vectors are stored row-major, so each sample is stored in a consecutive block of memory.
Supported centroid initialization methods
- KMean++