-
Notifications
You must be signed in to change notification settings - Fork 544
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
[BUG] DBSCAN: fix or remove "naive" versions of the building blocks #3414
Comments
@cjnolet Thoughts on this? |
This issue has been labeled |
This fixes issue rapidsai#3414.
This fixes issue rapidsai#3414.
This fixes issue rapidsai#3414.
This fixes issue rapidsai#3414.
…4804) This PR removes the naive versions of the DBSCAN algorithms. They were not used anymore and were largely incorrect, as described in rapidsai#3414. This fixes issue rapidsai#3414. Authors: - Allard Hendriksen (https://github.com/ahendriksen) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai#4804
The naive versions of the building blocks
vertexdeg
andadjgraph
use a row-major BxN matrixadj
, though the real algorithms use a column-major BxN matrix (described in some pieces of the code as a row-major NxB matrix, which is equivalent).I think that these algorithms should be made consistent or removed. I am wondering what is the reason for keeping them around?
The text was updated successfully, but these errors were encountered: