gpt4 book ai didi

Python igraph : Fastest way to convert large graph to python-igraph graph

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:42:31 26 4
gpt4 key购买 nike

我有一个大型无向加权图,其中包含约 375,000 个节点和约 3,400,000 个边,表示为邻接表(字典的字典)。

例如

A --> (B,2), (C,4)
B --> (A,2)
C --> (A,4)

表示为

{A : {B : 2, C : 4}, B : {A : 2}, C : {A : 4}}

我想将此图转换为 python-igraph 图,然后运行 ​​walktrap 社区检测算法。我尝试了以下方法:

g = igraph.Graph()

for node in mygrpah.keys():
g.add_vertex(name=node) # each node is a string

for node,neighbours in mygraph.iteritems():
g.add_edges([(node,neighbour) for neighbour in neighbours.keys()])
for neighbour in neighbours.keys():
# to avoid adding edge while traversing neighbour's dictionary
del mygraph[neighbour][node]

我在具有 150,000 个节点的子图上对此进行了测试,在配备 4GB RAM 和 i5-4200U CPU @ 1.60GHz × 4 处理器的计算机上花费了大约 11 个小时。

  1. 是否有更好的转换方法?
  2. 是否有其他更快并支持 walktrap 社区检测算法的图库?

最佳答案

问题是你一个接一个地添加边,由于底层数据结构,这是非常耗时的。首先构建一个顶点列表和一个边列表,然后通过调用 add_edges(...) 添加所有边会快得多。

mygraph = {"A" : {"B" : 2, "C" : 4}, "B" : {"A" : 2}, "C" : {"A" : 4}, "D":{}}
g = igraph.Graph(directed=False)
g.add_vertices(mygraph.keys())
edges = [(start, end) for start in mygraph.keys() for end in mygraph[start].keys()]
# or if you only want to have undirected links only once:
edges = [edge for edge in edges if edge[0] > edge[1]]
g.add_edges(edges)
igraph.plot(g)

关于Python igraph : Fastest way to convert large graph to python-igraph graph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31180734/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com