-
Notifications
You must be signed in to change notification settings - Fork 62
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 ? #9
Comments
@JohnTailor I found the same bug. Did you solve it? |
No, I have not solved it. |
Found the same bug too |
I have submitted a pull request to fix this bug. @rilut @JohnTailor @cxyang1997 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the repo. It fails funnily at times : see below
flat=np.random.random((64,9))
kmeans = EqualGroupsKMeans(n_clusters=3).fit(flat)
=> IndexError: index 62 is out of bounds for axis 0 with size 1
flat=np.random.random((6,2))
kmeans = EqualGroupsKMeans(n_clusters=3).fit(flat)
=> no error!!!
The text was updated successfully, but these errors were encountered: