You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Single Thread Implementation of Lloyd's Algorithm
127
-
b = [ParallelKMeans.kmeans(X, i, n_threads=1;
128
-
tol=1e-6, max_iters=300, verbose=false).totalcost for i =2:10]
136
+
b = [ParallelKMeans.kmeans(X, i, n_threads=1; tol=1e-6, max_iters=300, verbose=false).totalcost for i =2:10]
129
137
130
138
# Multi Thread Implementation of Lloyd's Algorithm by default
131
139
c = [ParallelKMeans.kmeans(X, i; tol=1e-6, max_iters=300, verbose=false).totalcost for i =2:10]
@@ -142,9 +150,25 @@ Currently, this package is benchmarked against similar implementation in both Py
142
150
Currently, the benchmark speed tests are based on the search for optimal number of clusters using the [Elbow Method](https://en.wikipedia.org/wiki/Elbow_method_(clustering)) since this is a practical use case for most practioners employing the K-Means algorithm.
0 commit comments