Home
last modified time | relevance | path

Searched refs:cluster_selection_epsilon (Results 1 – 7 of 7) sorted by relevance

/dports/math/py-hdbscan/hdbscan-0.8.27/hdbscan/
H A Dflat.py49 cluster_selection_epsilon=0., argument
121 cluster_selection_epsilon = 0.
161 epsilon = cluster_selection_epsilon
193 cluster_selection_epsilon=epsilon)
313 cluster_selection_epsilon=cluster_selection_epsilon)
365 cluster_selection_epsilon=0.): argument
437 epsilon = cluster_selection_epsilon
842 if cluster_selection_epsilon != 0.0:
860 if cluster_selection_epsilon != 0.0:
887 if eps < cluster_selection_epsilon:
[all …]
H A Dhdbscan_.py52 cluster_selection_epsilon=0.0): argument
64 cluster_selection_epsilon)
332 def hdbscan(X, min_cluster_size=5, min_samples=None, alpha=1.0, cluster_selection_epsilon=0.0, argument
496 if type(cluster_selection_epsilon) is int:
497 cluster_selection_epsilon = float(cluster_selection_epsilon)
499 if type(cluster_selection_epsilon) is not float or cluster_selection_epsilon < 0.0:
638 cluster_selection_epsilon) + \
844 def __init__(self, min_cluster_size=5, min_samples=None, cluster_selection_epsilon=0.0, argument
858 self.cluster_selection_epsilon = cluster_selection_epsilon
H A D_hdbscan_tree.pyx423 np.double_t cluster_selection_epsilon, argument
460 if cluster_selection_epsilon != 0.0:
461 if tree['lambda_val'][tree['child'] == n] >= 1 / cluster_selection_epsilon :
634 if parent_eps > cluster_selection_epsilon:
637 … return traverse_upwards(cluster_tree, cluster_selection_epsilon, parent, allow_single_cluster)
646 if eps < cluster_selection_epsilon:
663 cluster_selection_epsilon=0.0): argument
689 cluster_selection_epsilon: float, optional (default 0.0)
744 if cluster_selection_epsilon != 0.0 and cluster_tree.shape[0] > 0:
767 if cluster_selection_epsilon != 0.0:
[all …]
H A D_hdbscan_tree.c1244 PyObject *cluster_selection_epsilon; member
12425 __pyx_v_cluster_selection_epsilon = __pyx_optional_args->cluster_selection_epsilon; in __pyx_f_7hdbscan_13_hdbscan_tree_get_clusters()
13955 __pyx_t_2.cluster_selection_epsilon = __pyx_v_cluster_selection_epsilon; in __pyx_pf_7hdbscan_13_hdbscan_tree_18get_clusters()
/dports/math/py-hdbscan/hdbscan-0.8.27/hdbscan/tests/
H A Dtest_flat.py90 epsilon = clusterer_flat.cluster_selection_epsilon
92 cluster_selection_epsilon=epsilon).fit(X)
106 epsilon = clusterer_flat.cluster_selection_epsilon
108 cluster_selection_epsilon=epsilon).fit(X)
125 cluster_selection_epsilon=0).fit(X)
141 epsilon = clusterer_flat.cluster_selection_epsilon
143 cluster_selection_epsilon=epsilon).fit(X)
156 cluster_selection_epsilon=0,
H A Dtest_hdbscan.py629 cluster_selection_epsilon=0.0,
639 cluster_selection_epsilon=0.2,
/dports/math/py-hdbscan/hdbscan-0.8.27/notebooks/
H A DFlat clustering.ipynb9 … in the documentation. One such parameter is 'cluster_selection_epsilon'. Setting cluster_selectio…
11cluster_selection_epsilon are not fully integrated. Functions like approximate_predict, membership…
13 …w things here and there with the HDBSCAN class to propagate all cluster_selection_epsilon related …
609 …r to hdbscan.approximate_predict, but also takes 'n_clusters', 'cluster_selection_epsilon', and 'p…
763 …an.all_points_membership_vectors, but also takes 'n_clusters', 'cluster_selection_epsilon', and 'p…
977 …lar to hdbscan.membership_vector, but also takes 'n_clusters', 'cluster_selection_epsilon', and 'p…