-
Hi,
I have a problem statement which need similar sentences to be grouped together. Can I use clustering algorithms like DBSCAN, HDBSAN to cluster the embeddings together?
-
Clustering on a large amount of network data, I have hit upon a case where I essentially have the same data point, just repeated multiple times (600 points or so) as the set of data to cluster on. Thi…
-
**Ask the question**
I'm training a model using the Tribuo HDBscan algorithm and then predicting new values with this model to search for anomalies in my data. However, when retrieving the prediction…
-
I have been playing with hdbscan to try and build an intuition for what it is doing. Currently I am running into counter-intuitive behavior when running it on synthetic data. In particular I have been…
-
Hi all,
Thank you for doing such a great work creating this library. It is my favorite clustering algorithm and I really enjoy using it. I recently run into this error that I do not know how to so…
-
Producing a simple dataframe via
```
x = np.linspace(0,100,200)
y = np.arange(0,200)
xy, _ = np.meshgrid(x,y)
noise = 0.3*np.random.random((200,200))
series = np.sin(xy+5*noise) + noise
series …
-
Was searching through the issues in this repo regarding soft clustering or making sure each point is assigned a cluster even if it is suboptimal. I played around with the methods prescribed in the doc…
-
Clustering a weighted data set D: every d in D; w(d) ≥ 0; ∑ w(d) = 1. The
number of D(i.e. |D|) is n.
Traditional clustering algorithms can be readily translated into the weighted
setting …
-
Hi!
First of all, thank you so much for your earlier help!
I have gotten everything to run smoothly up to this point, but as I try to open my dataset in the app post-segmentation, I am finding …
-
Is there any way to do semi-supervised clustering with partially labeled data? Or to manually remove an element from a cluster and then re-cluster?
thanks
Scott