diff --git a/dask_ml/cluster/k_means.py b/dask_ml/cluster/k_means.py index 4b02c2fa4..b1dcdd905 100644 --- a/dask_ml/cluster/k_means.py +++ b/dask_ml/cluster/k_means.py @@ -39,7 +39,8 @@ class KMeans(TransformerMixin, BaseEstimator): init : {'k-means||', 'k-means++' or ndarray} Method for center initialization, defaults to 'k-means||'. - 'k-means||' : selects the the gg + 'k-means||' : selects the parallel initalization procedure + for initializing the cluster centers. 'k-means++' : selects the initial cluster centers in a smart way to speed up convergence. Uses scikit-learn's implementation.