hdbscan-cpp
hdbscan-cpp copied to clipboard
Fast and Efficient Implementation of HDBSCAN in C++ using STL
My dataset is 50000 x 22 dimensions. When running HDBSCAN on it, the following error occurs: ``` terminate called after throwing an instance of 'std::length_error' what(): cannot create std::vector larger...
hello, Could you please explain the difference between parameters minClusterSize and minPoints? thanks, Omer.
I was wondering if this library includes the accelerated version of the HDBSCAN algo from 2017? The paper: https://arxiv.org/abs/1705.07321 The implementation in Python: https://github.com/scikit-learn-contrib/hdbscan
LoadCsv Method will throw bad_alloc exception if the file given as parameter is not found.
vector.resize() throws bad_alloc allow when it is used to resize greater than 16,000 points
Hello everybody, Can someone, please, explain to me a small quicksort implementation detail in [the `UndirectedGraph` class](https://github.com/rohanmohapatra/hdbscan-cpp/blob/master/HDBSCAN-CPP/HdbscanStar/undirectedGraph.cpp#L40C1-L41C21). In the method `selectPivotIndex` there is an early return block ```cpp if (startIndex...
his pull request adds a Makefile.windows for Windows users who want to build the project using g++ (via Git Bash, MSYS2, or MinGW). The original Makefile uses Linux-specific commands (find,...
- I am currently working on a project where I need to perform HDBSCAN clustering on a large dataset (millions of iterations with 600-700 data points per run). Initially, I...