Fabian Brandt-Tumescheit
Fabian Brandt-Tumescheit
The calculated metric for the quality of the overlapping community segmentation results is incorrect
Concerning your third question: You can use the `PartitionWriter`/ `CoverWriter` (or their respective reader) to read or write Covers/Partitions. See here for documentation: https://networkit.github.io/dev-docs/python_api/graphio.html?highlight=cover#networkit.graphio.CoverWriter
Will close this PR, the functionality will be finalized in PR #1236.
Hi, thanks for reporting the issue. Another fix would be to move all members of the partition to a singleton partition: ``` G = nk.readGraph("./uk.edgelist", nk.Format.EdgeListSpaceZero) partition = nk.Partition(G.numberOfNodes()) partition.allToSingletons()...
Hm, never stumbled upon your `legacy-install-failure` error before. Seems that most of the time it is related more to the Python/pip environment. Did you already try to upgrade pip (e.g....
Alright - can you give more information about the environment you are using (like OS, `pip freeze`, default c++ compiler version)?
Thanks for the info. I was able to reproduce your problem. Actually it is likely, that gcc-11 is the problem here. At least on the test machine I get quite...
My bad. Only mentioned package `gcc-9`. This does not install the C++ compiler, therefore the `is not a full path ...` error. ``` sudo apt-get install g++-9 ``` Try if...
Hi Thijss, this sounds like a nice-to-have feature in general. We currently have something less useable/persistent in place. Wheels are builds and uploaded as artifacts for every merge to master....
Hi and sry for the late reply. So far, I wasn't able to reproduce your issues. Since your testcase doesn't specify the underlying dataset, I tried the above code with...
Hi, I tested your code above and removed the Pytorch code (basically just doing the network generation) and added a print after each generation. There, SIGINT calls are received: ```...