SGConv for ogbn-products dataset #6147
Answered
by
EdisonLeeeee
MohsenFazaeli
asked this question in
Q&A
-
Hi, I am going to run SGC on ogbn-products dataset. In PYG implementation of SGC S(S^{n-1}X) W is calculated which propagates data through normalized adjacency matrix n iteration which does not fit in memory. Can we calculate this higher powers of S fist S^{n}X W and then use batching to decrease memory requirements? |
Beta Was this translation helpful? Give feedback.
Answered by
EdisonLeeeee
Dec 6, 2022
Replies: 2 comments 7 replies
-
Yes, you can precompute |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
MohsenFazaeli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can precompute$S$ manually outside the network, followed by an MLP with minibatch training.