-
The In the case of edge regression, I want to predict the values at the edge (so the Example shapes:
My code for splitting:
Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok, just figured it out. In the default case the |
Beta Was this translation helpful? Give feedback.
Ok, just figured it out. In the default case the
edge_attr
is not split into train, val, and test. In the default case, anedge_label
is created for a binary prediction task.In the case, that there are already some labels the
key
parameter ofRandomLinkSplit
can be used to control the behavior.So by setting the key to
edge_attr
theedge_attr
gets split up into train, val and test.