-
Notifications
You must be signed in to change notification settings - Fork 83
Implement hierarchical clustering #11
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
@Mec-iS Take a look at this paper that describes a FastPair algorithm. This algorithm helps to speedup cluster merge operation. |
NotesFastPair
|
Yes, calling C++ library from SmartCore is not an option for multiple reasons. We'll have to ship Do you know C++ by any chance? 😄 If not, feel free to go with any implementation, even if it is not the fastest out there. Another option would be to try to implement the algorithm (it is described here) yourself. It would be super awesome if you can implement |
what role you had in mind for FastPair? |
As an alternative to |
FastPair is implemented #142 We can move on to implement clustering; starting with AgglomerativeClustering Tasks:
Basic linkage is Ward (that needs euclidean distance). |
Motivation: why do we need hierarchical when we have already kmeans?
Vocabulary:
Sub-tasks:
Visualisations: (?)
Other implementations:
The text was updated successfully, but these errors were encountered: