Skip to content

DOC add link plot_inductive_clustering #30158

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

Closed
Closed
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
9 changes: 7 additions & 2 deletions doc/modules/clustering.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,13 @@ mixture models. KMeans can be seen as a special case of Gaussian mixture
model with equal covariance per component.

:term:`Transductive <transductive>` clustering methods (in contrast to
:term:`inductive` clustering methods) are not designed to be applied to new,
unseen data.
Comment on lines -140 to -141
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This marks the key difference between Transductive and Inductive Clustering. Therefore, I think it should be preseverd.

:term:`inductive` clustering methods) are not
designed to be applied to new, unseen data.
Comment on lines +140 to +141
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
:term:`inductive` clustering methods) are not
designed to be applied to new, unseen data.
:term:`inductive` clustering methods) are not designed to be applied to new,
unseen data.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @virchan thanks for the suggestions.
I've seen yesterday that when I launched the updated PR, it started directly from the own repository instead from my fork repository.
I received the notifications about issues on the CI failed tests, and for instance I report the comment from the linter step:
""
Error: Unable to download artifact(s): Artifact not found for name: lint-log
Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact.
""
Maybe could come from not updated files in the own repository?
To avoid troubles, I close the pull request, I'll update my fork and local repository, and then I'll open a new one.


.. rubric:: Examples

* :ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`: A practical
example of inductive clustering model.
Comment on lines +145 to +146
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* :ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`: A practical
example of inductive clustering model.
* :ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`: An example
of an inductive clustering model for handling new data.


.. _k_means:

Expand Down
Loading