Replies: 1 comment 5 replies
-
Are you using |
Beta Was this translation helpful? Give feedback.
5 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello PyG team @rusty1s ,
I am implementing a link prediction task using GCN or GraphSage on ogbl-citation2 dataset, but it takes 12h to run just 1 epoch. Is it because I am using LinkNeighborLoader? I took a reference of PyG teams' code. I thought my implementation is pretty similar to it, but why training takes such long time?
Device I am using:
NVIDIA Tesla V100 NVLINK, 32 GB of GPU memory
My code is as follows,
This is model.py
And the params that I am using are:
epochs: 150
batch_size: 4096
learning_rate: 0.0008
model: Sage
num_layers: 2
hidden_dim: 128
dropout: 0.0
Beta Was this translation helpful? Give feedback.
All reactions