-
Notifications
You must be signed in to change notification settings - Fork 102
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
None of the examples work #2
Comments
Seeing the same issue |
me too |
Is there anything method ? |
me too - -! |
same exact problem, and I tried to debug with a randomly created ndarray, when the new ndarray has [{0, 3}, {1, 7}, {9, 2, 4, 5}, {8, 6}] as scipy.spatial.qhull.QhullError: QH6214 qhull input error: not enough points(2) to construct initial simplex (need 3) While executing: | qhull i Qt So is this thing really works? |
The first one: Actually, I found many ways, and I find it seems that 151 line, in communities\visualization\draw_communities.py def _community_patch(vertices): tck, u = splprep(vertices.T, u=None, s=0.0, per=1) lost the key of the k——the default k is 3. So I changed it: tck, u = splprep(vertices.T, u=None, s=0.0, per=1, k=2). And it works. But I don't know it is right or not. |
it pops out a new error: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV) and my Python program "accidentally" dead(according to my system info, I'm using macOS Big Sur) |
I think you are right. |
me too |
me too !!! |
it pops out a new error: While executing: | qhull i Qt |
Did you solve it? I also ran into this problem with my own data |
I tried all the example with this matrix
adj_matrix = np.array([[0, 1, 1, 0, 0, 0],
[1, 0, 1, 0, 0, 0],
[1, 1, 0, 1, 0, 0],
[0, 0, 1, 0, 1, 1],
[0, 0, 0, 1, 0, 1],
[0, 0, 0, 1, 1, 0]])
And none of them work.
For instance, the first visualization traceback to
TypeError: m > k must hold
The first animation traceback to
ZeroDivisionError: division by zero
The text was updated successfully, but these errors were encountered: