-
Notifications
You must be signed in to change notification settings - Fork 86
implemented hierarchal clustering #312
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
base: development
Are you sure you want to change the base?
Conversation
Whenever I create a certain n amount of clusters, the labels returned by this implementation and sklearn start to deviate. Is it because of the difference in numeric precision with the Python ml libraries? |
My Python implementation works perfectly. |
I will take a look. For now you can compare with this implementation https://github.com/rom1mouret/catclustering |
@@ -4,5 +4,6 @@ | |||
//! are more similar to other data points in the same group than those in other groups. In simple words, the aim is to segregate groups with similar traits and assign them into clusters. | |||
|
|||
pub mod dbscan; | |||
pub mod hierarchal; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: hierarchical
also better to use agglomerative
@DanielLacina as a pairing algorithm please use fastpair as it is implemented in the pairing module |
thanks |
Do you think we should add a linkage attribute to the FastPair struct? |
No description provided.