-
I was going through the examples of PyTorch geometric for the ZINC dataset and found a code using PNAConv, which uses edge_embedding and node_embedding. The choice of embedding sizes, specifically node_embedding (21, 75) and edge_embedding (4, 50), appears intriguing. I'm curious about the rationale behind these selections. from torch_geometric.datasets import ZINC
Example code: class Net(torch.nn.Module):
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
These are just the maximum indices present in |
Beta Was this translation helpful? Give feedback.
-
Okay. Understood. Thank you for your help! Also, is there any example code for the dataset AQSOL? |
Beta Was this translation helpful? Give feedback.
Okay. Understood. Thank you for your help! Also, is there any example code for the dataset AQSOL?