kmeans-vector 0.1 → 0.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Math/KMeans.hs +1/−1
- kmeans-vector.cabal +1/−1
Math/KMeans.hs view
@@ -53,7 +53,7 @@ kmeansAux points pgroups = let pss = kmeansStep points pgroups in case pss == pgroups of True -> pgroups- False -> kmeansStep points pss + False -> kmeansAux points pss -- | Performs the k-means clustering algorithm -- using trying to use 'k' clusters on the given list of points
kmeans-vector.cabal view
@@ -1,5 +1,5 @@ Name: kmeans-vector-Version: 0.1+Version: 0.1.1 Synopsis: An implementation of the kmeans clustering algorithm based on the vector package Description: Provides a simple (but efficient) implementation of the k-means clustering algorithm. The goal of this algorithm is to, given a list of n-dimensional points, regroup them in k groups, such that each point gets to be in the group to which it is the closest to (using the 'center' of the group). .