-
Got an AttributeError.
Code:
``` python
import fast_hdbscan
from sklearn.datasets import make_blobs
data, _ = make_blobs(1000)
clusterer = fast_hdbscan.HDBSCAN(min_cluster_size=10)
cluste…
-
Like for DBSCAN it would be very useful to also have the possibility to use a "sample_weight" parameter when performing HDBSCAN clustering trough the fit method. This to take into account possible pre…
-
import hdbscan
import numpy as np
import pandas as pd
from sklearn.metrics import adjusted_rand_score
import matplotlib.pyplot as plt
data = pd.read_csv('DBSCAN Data.csv')
X = data[['Feature 1…
-
See also #28 (comparing clusters to Allen cell types)
- Nature Biotech paper (2018): [Dimensionality reduction for visualizing single-cell data using UMAP)](https://www.semanticscholar.org/paper/Di…
-
I have a question about Zero-Shot. I used Zero -shot BERTOPIC to do topic mining for my dissertation. I need to explain in more detail about the process. In the case, zero-shot and HDBSCAN are initiat…
-
When dealing with large datasets and memory constraints, one popular clustering algorithm that can be effective is the DBSCAN (Density-Based Spatial Clustering of Applications with Noise) algorithm. D…
-
It would nice to support other clustering methods than HDBSCAN in the process. Some commonly used methods include:
- k-means
- GMM (Guassian Mixture Models)
- [EVOC](https://github.com/TutteInstitu…
-
Hi
I got the below error while running the hdbscan test. is there any significant issues? Appreciate your help.
thank you
PS C:\Users\K19067372\Documents> nosetests -s hdbscan
..............…
-
Hi,
I'm trying to [create a conda-forge recipe for `fast_hdbscan`](https://github.com/conda-forge/staged-recipes/pull/24268), but the Windows build is failing due to a bug that [has been fixed](htt…
-
Hi,
Many thanks for such great package!
I have Python 3.8.10 on a Windows machine. I installed hdbscan 0.8.27, below is the installation log:
pip install hdbscan==0.8.27
Collecting hdbscan==0.…