@@ -112,12 +112,13 @@ of 15.
112112As you can see this results in us recovering something much closer to
113113our original clustering, only now with some of the smaller clusters
114114pruned out. Thus ``min_cluster_size `` does behave more closely to our
115- intuitions, but only if we fix ``min_samples ``. If you wish to explore
116- different ``min_cluster_size `` settings with a fixed ``min_samples ``
117- value, especially for larger dataset sizes, you can cache the hard
118- computation, and recompute only the relatively cheap flat cluster
119- extraction using the ``memory `` parameter, which makes use of
120- `joblib <https://pythonhosted.org/joblib/ >`_
115+ intuitions, but only if we fix ``min_samples ``.
116+
117+ If you wish to explore different ``min_cluster_size `` settings with
118+ a fixed ``min_samples `` value, especially for larger dataset sizes,
119+ you can cache the hard computation, and recompute only the relatively
120+ cheap flat cluster extraction using the ``memory `` parameter, which
121+ makes use of `joblib <https://pythonhosted.org/joblib/ >`_
121122
122123.. _min_samples_label :
123124
@@ -134,6 +135,9 @@ to progressively more dense areas. We can see this in practice by
134135leaving the ``min_cluster_size `` at 60, but reducing ``min_samples `` to
1351361.
136137
138+ Note: adjusting ``min_samples `` will result in recomputing the **hard
139+ comptuation ** of the single linkage tree.
140+
137141.. code :: python
138142
139143 clusterer = hdbscan.HDBSCAN(min_cluster_size = 60 , min_samples = 1 ).fit(data)
@@ -181,6 +185,9 @@ clustering is. By default ``alpha`` is set to 1.0. Increasing ``alpha``
181185will make the clustering more conservative, but on a much tighter scale,
182186as we can see by setting ``alpha `` to 1.3.
183187
188+ Note: adjusting ``alpha `` will result in recomputing the **hard
189+ comptuation ** of the single linkage tree.
190+
184191.. code :: python
185192
186193 clusterer = hdbscan.HDBSCAN(min_cluster_size = 60 , min_samples = 15 , alpha = 1.3 ).fit(data)
0 commit comments