When using edge_weight
with SAGEConv, I encountered ValueError
due to unexpected tensor size
#6973
-
I have a link prediction model that works when
When I run the model, I encounter the aforementioned error:
If this is not the correct usage of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
edge_weight
is not a supported argument inSAGEConv
, you can useGraphConv
instead.