Skip to content

Commit 04599f2

Browse files
committed
fix for issue #74 supplying n_jobs as a parameter for robust single linkage.
1 parent 1a695d4 commit 04599f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hdbscan/hdbscan_.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,8 @@ class HDBSCAN (BaseEstimator, ClusterMixin):
641641
642642
core_dist_n_jobs : int, optional (default=4)
643643
Number of parallel jobs to run in core distance computations (if
644-
supported by the specific algorithm).
644+
supported by the specific algorithm). For ``core_dist_n_jobs``
645+
below -1, (n_cpus + 1 + core_dist_n_jobs) are used.
645646
646647
allow_single_cluster : bool, optional (default=False)
647648
By default HDBSCAN* will not produce a single cluster, setting this

0 commit comments

Comments
 (0)