From 6876dd1bef5316f6a1cb67f96f470c1b9d442b0c Mon Sep 17 00:00:00 2001 From: claudio1975 Date: Sat, 26 Oct 2024 23:14:01 +0200 Subject: [PATCH 1/2] add link plot_inductive_clustering --- doc/modules/clustering.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/modules/clustering.rst b/doc/modules/clustering.rst index 3a055abb65c8b..c551ed6a80ec4 100644 --- a/doc/modules/clustering.rst +++ b/doc/modules/clustering.rst @@ -137,8 +137,9 @@ mixture models. KMeans can be seen as a special case of Gaussian mixture model with equal covariance per component. :term:`Transductive ` clustering methods (in contrast to -:term:`inductive` clustering methods) are not designed to be applied to new, -unseen data. +:term:`inductive` clustering methods, refer to this example +:ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`) are not +designed to be applied to new, unseen data. .. _k_means: From dda185ab17b0fd25e8f341b3949992aec6ceb625 Mon Sep 17 00:00:00 2001 From: claudio1975 Date: Wed, 30 Oct 2024 07:08:16 +0100 Subject: [PATCH 2/2] update link plot_inductive_clustering --- doc/modules/clustering.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/modules/clustering.rst b/doc/modules/clustering.rst index c551ed6a80ec4..bf3fa4cedb526 100644 --- a/doc/modules/clustering.rst +++ b/doc/modules/clustering.rst @@ -137,10 +137,14 @@ mixture models. KMeans can be seen as a special case of Gaussian mixture model with equal covariance per component. :term:`Transductive ` clustering methods (in contrast to -:term:`inductive` clustering methods, refer to this example -:ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`) are not +:term:`inductive` clustering methods) are not designed to be applied to new, unseen data. +.. rubric:: Examples + +* :ref:`sphx_glr_auto_examples_cluster_plot_inductive_clustering.py`: A practical +example of inductive clustering model. + .. _k_means: K-means