Create a TU(like)Dataset on disk #2698
-
Hi! Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is an interesting question. Currently, However, I think this is possible nonetheless. Given that you know about the number of nodes and the number of edges of each graph in your dataset, you should be able to read node features and graph-structure in chunks via |
Beta Was this translation helpful? Give feedback.
This is an interesting question. Currently,
read_tu_data
will read the complete dataset in memory.However, I think this is possible nonetheless. Given that you know about the number of nodes and the number of edges of each graph in your dataset, you should be able to read node features and graph-structure in chunks via
pandas.read_csv
.