Combining graphs into a bigger graph #7395
Replies: 1 comment
-
I closed this discussion as I found a way to create a graph dataset via Data() from torch_geometric.data |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently working on a graph from NetworkX (which was originated translated from a csv), which I intend to transform into a Pytorch Geometric dataset. However, I am unable to use from_networkx on the entire graph, as it returns a MemoryError. I intend to apply a workaround by splitting the csv into smaller parts, and creating corresponding NetworkX graphs to use them in networkx. My question is that is there a method to merge these PyG graphs together, in order to get the final graph? Or is there another alternative approach to this?
Thank you all in advance, and I would really appreciate any response!
Beta Was this translation helpful? Give feedback.
All reactions