Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update KMeans class information #918

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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