Is it safe to assume that conv layers without a batch
argument for forward
are safe to use with batched graphs?
#5134
Answered
by
rusty1s
callumm-graphcore
asked this question in
Q&A
-
Hello, I'm researching PyG because we are planning on writing tutorials on it for my company's platform. I've noticed that some convolutional layers take an optional With thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Aug 4, 2022
Replies: 1 comment 1 reply
-
Yes. Any GNN layer without a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
callumm-graphcore
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. Any GNN layer without a
batch
argument can be used for single graphs and batched graphs.