doubt on message passing layer #3030
Unanswered
steffyalbert
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
1 reply
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 working a particle-based fluid simulation data and I use GNN to predict the velocity components of a particular time step given the past 4 timesteps position and velocity as input. My final goal is to generate a rollout of the predictions of test data(giving the predicted timestep as input and predicting the next timestep and so on). Initially, I used the GCNConv layer for the message-passing step, but I was not able to get rollout predictions, but then when I changed the message-passing layer to EdgeConv it was able to generate rollout up to few timesteps. As both, the classes aggregate the neighborhood features what could be the possible reason for this behavior? Also is there any better implementation I could use from the Pytorch geometric package that I could use for this type of scenario?
Beta Was this translation helpful? Give feedback.
All reactions