-
Notifications
You must be signed in to change notification settings - Fork 507
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
Outlier scores - possible bug in GLOSH computation #628
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am curious if GLOSH implementation in this repository correctly follows the paper's definition of "outlierness".
According to HDBSCAN* paper (R. J. G. B. Campello et al. 2015, page 25):
Looking at the
max_lambdas
function for computingεmax(xi)
, I think the original paper's explanation (the bold italic text above) is not correctly interpreted. It seems themax_lambdas
function only considers the death of a parent cluster (not considering the latest death of its subclusters).To reproduce this issue, please run the following code:
This should show the following plot:
As you can see from the plot, the outlier scores assigned to the data points between clusters (please find the yellow points between the clusters!) do not seem to look "natural" outliers compared to other outliers. From my own understanding of the paper, we want the far away outlier points to have higher scores (just like looking at a topographical map) and the points between clusters to have lower outlier scores.
I think GLOSH is supposed to give us this instead:
It seems a fix of GLOSH may also be of help for #116. I would like to PR but I seem to have issues with building the code for now. Please let me know if there is something I might be missing.
The text was updated successfully, but these errors were encountered: