tkipf / gcn

Implementation of Graph Convolutional Networks in TensorFlow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scalability for large graphs

jeskreiswinkler-etsy opened this issue · comments

I am interested in using this code for analyzing large graphs, but it seems like memory complexity is going to scale like a polynomial if this adjacency matrix code is used:

adj = nx.adjacency_matrix(nx.from_dict_of_lists(graph))

Is there an alternative?