Getting an error when trying to use dataloader for hetero link prediction with #4026 #4034
-
Following #4026, I tried to make a dataloader for edge link prediction.
Then I tried to make the dataloader as below:
I do not receive any error but when I do next(iter(train_loader)), it shows this as below,
It shows this error.
Am I doing something not according to #4026? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Oh you are right. This procedure really does not work yet for heterogeneous graphs, in particular because |
Beta Was this translation helpful? Give feedback.
Oh you are right. This procedure really does not work yet for heterogeneous graphs, in particular because
input_nodes
currently expects a single node type as input. Sorry for the confusion. Will try to fix that in #4026 as well.