Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/hdbscan change #799

Merged
merged 11 commits into from
Jan 27, 2025
Prev Previous commit
Next Next commit
changed order of unit test to match changed order of data in scikit-l…
…earn hdbscan
“JoeJ” committed Jan 7, 2025
commit d7757916abbdfdcb086c460fc6847bb2357e1f8e
Original file line number Diff line number Diff line change
@@ -73,12 +73,12 @@
1.0,
1.0
],
'tool1_clusters_count': [c1_count, c0_count],
'tool1_clusters_x': [c1_loc[0], c0_loc[0]],
'tool1_clusters_y': [c1_loc[1], c0_loc[1]],
'tool1_clusters_var_x': [c1_cov[0, 0], c0_cov[0, 0]],
'tool1_clusters_var_y': [c1_cov[1, 1], c0_cov[1, 1]],
'tool1_clusters_var_x_y': [c1_cov[0, 1], c0_cov[0, 1]],
'tool1_clusters_count': [c0_count, c1_count],
'tool1_clusters_x': [c0_loc[0], c1_loc[0]],
'tool1_clusters_y': [c0_loc[1], c1_loc[1]],
'tool1_clusters_var_x': [c0_cov[0, 0], c1_cov[0, 0]],
'tool1_clusters_var_y': [c0_cov[1, 1], c1_cov[1, 1]],
'tool1_clusters_var_x_y': [c0_cov[0, 1], c1_cov[0, 1]],
'tool2_points_x': [3],
'tool2_points_y': [4],
'tool2_cluster_labels': [-1],