Submitted by ramya_1995 t3_10dv8rf in MachineLearning
Hello everyone,
​
I have a question about GCNs and would appreciate any thoughts. Do we typically use only one graph for GCN training/inference?
I'm asking this because when I saw official DGL website, there was only one example graph after loading it. Based on my experience with DNNs, I expected a batch of examples. However, it was not the case for GCNS. I could find PPI dataset with multiple graph examples (24) but for other widely used datasets (e.g., Cora, Citeseeer, and Pubmed), there was only one.
Thank you!
laaweel t1_j4pm5q3 wrote
Hello,
it depends on the problem but it is also possible to train over many graphs.
I am also a beginner, especially in the area of graph neural networks, and found it very confusing that in all the examples only one graph was trained on at a time.
But it seems to be no problem. I am currently training a model and have 200k+ example graphs and I do predict node features.
I collected the dataset myself though. But I think there are also datasets with many graphs in the field of biology / medicine.
Feel free to reach out if you need help :)