-
Hello. I have a question about the batch format in GATConv. I'm writing the code of GAT for a fully connected garaph with reference to some issues (e.g. here and here), but it seems this model does not learn anything. I think it is caused by my misunderstanding about the way to make batches. Is there are any best practices to deal with the batch?
Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
I think the way you create batches is correct (although for best-practice you should separate it from the model instance). Therefore, I think the problem of not learning anything needs to stem from something else. |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for your help! I will check other components. Thanks for the great library. |
Beta Was this translation helpful? Give feedback.
-
Do I need to add F.relu between self.conv1 and self.conv1? |
Beta Was this translation helpful? Give feedback.
I think the way you create batches is correct (although for best-practice you should separate it from the model instance). Therefore, I think the problem of not learning anything needs to stem from something else.