-
Notifications
You must be signed in to change notification settings - Fork 38
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
markov_clustering, possible error in instructions for computing of modularity Q #24
Comments
I also experienced this issue when running
If you remove the
|
ProblemI've noticed that this issue still exists when Procedure
ConclusionThe solution provided by @grgmiller works for similarity matrices that are of numpy arrays type. |
Dear all, ImportError: attempted relative import with no known parent package Thank you, |
In calculating modularity Q I get the following error in my script that uses the markov_clustering package:
Shouldn't
Q = mc.modularity(matrix=result, clusters=clusters)
as it reads in the instructions be instead:
Q = mc.modularity(matrix, clusters=clusters)
?Or otherwise...?
Thanks a lot.
The text was updated successfully, but these errors were encountered: