-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Plot kmeans plusplus #30126
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
Plot kmeans plusplus #30126
Conversation
… the example from KMeans docs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a small comment.
doc/modules/clustering.rst
Outdated
@@ -241,6 +241,9 @@ to the dataset :math:`X`. | |||
* :ref:`sphx_glr_auto_examples_text_plot_document_clustering.py`: Document clustering | |||
using :class:`KMeans` and :class:`MiniBatchKMeans` based on sparse data | |||
|
|||
* :ref:`sphx_glr_auto_examples_cluster_plot_kmeans_plusplus.py`: Using K-means++ | |||
to select seeds for other clustering algorithms. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation in this line is not correct (which causes the CI to fail).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for helping me. I corrected the indentation, now the CI is green.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
ping @adrinjalali
original PR natmokval#1
Towards #26927
added links to examples in the docstrings and the user guide for K-Means ++.