-
Hi, I have created train, val, and test masks using Basically, I want to avoid a data leak in terms of the node or edge indices between the train, val, and test sets. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Can you say a bit more about what it means to apply One thing I could think of is to split the graph into 3 subgraphs via |
Beta Was this translation helpful? Give feedback.
Can you say a bit more about what it means to apply
RandomNodeSplit
andRandomLinkSplit
together? What do you want to try to achieve? What do you expect to happen?One thing I could think of is to split the graph into 3 subgraphs via
data.subgraph()
based on the node-level masks coming fromRandomNodeSplit
. Each subgraph can then be further splitted viaRandomLinkSplit
.