From a9f7dfde09e369921d2d5ca16e49a291db4d30f2 Mon Sep 17 00:00:00 2001 From: Kazuki Adachi Date: Sat, 12 Oct 2024 12:12:36 +0900 Subject: [PATCH] small modification on docstring --- ignite/metrics/clustering/silhouette_score.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ignite/metrics/clustering/silhouette_score.py b/ignite/metrics/clustering/silhouette_score.py index fa6952f7073..1ecc120f7e2 100644 --- a/ignite/metrics/clustering/silhouette_score.py +++ b/ignite/metrics/clustering/silhouette_score.py @@ -28,6 +28,7 @@ class SilhouetteScore(_ClusteringMetricBase): s = \frac{b-a}{\max(a,b)} where: + - :math:`a` is the mean distance between a sample and all other points in the same cluster. - :math:`b` is the mean distance between a sample and all other points in the next nearest cluster.