Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dask_ml/cluster/k_means.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down