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.