-
Notifications
You must be signed in to change notification settings - Fork 41
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
Get total variation (Elbow method) #31
Comments
Implementing the elbow method is quite expensive to implement. |
From this ticket's scope, calculating the Elbow point is someone else's problem. We're just providing the variance here 😉 |
Oh, that's right. Then I understood. great. |
In order to find the best value for K (the number of clusters), it would be nice to get the variance of the distance of clustered points to their cluster's centroid.
Inspired by https://www.youtube.com/watch?v=4b5d3muPQmA
Also see https://en.wikipedia.org/wiki/Elbow_method_(clustering)
I also believe the current v3 implementation of RandomInitialization is wrong 🤷♂️
Proposed change
The text was updated successfully, but these errors were encountered: