cugraph
cugraph copied to clipboard
Expose capability to run Louvain with different permutations of vertices to the python layer
What is your question?
I want to generate several different results of Louvain, and need to random permute vertices in graph.
In igraph, we can make it like this: p = np.random.permutation(self.vcount()).tolist() g = self.permute_vertices(p)
How to realize the same function in multi-GPU cuGraph with dask cudf? Thanks
Code of Conduct
- [x] I agree to follow cuGraph's Code of Conduct
- [x] I have searched the open issues and have found no duplicates for this question