You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, everyone. I'm using the MovieLensDataset for link prediction for undirected graph. I'm showing my data as HeteroData object and i'm using the RandomLinkSplit to create the train/val/test sets. Next, i use the LinkNeighborLoader to create batches and i'm showing only the test loader as an example here. From my understanding in the edge_label_index parameter i have to pass the message passing edges and in the edge_label a tensor with ones of the same size, so i'm not sure how the supervision edges are used here. The problem i encouter is when i examine the message passing edges (mp_test_loader) with the supervision edges (sp_test_loader) i have some common edges (target leakage), this only happens in the test_loader but not in the initial test_data. Any help why this is happening?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, everyone. I'm using the MovieLensDataset for link prediction for undirected graph. I'm showing my data as
HeteroData
object and i'm using theRandomLinkSplit
to create the train/val/test sets. Next, i use theLinkNeighborLoader
to create batches and i'm showing only the test loader as an example here. From my understanding in theedge_label_index
parameter i have to pass the message passing edges and in theedge_label
a tensor with ones of the same size, so i'm not sure how the supervision edges are used here. The problem i encouter is when i examine the message passing edges (mp_test_loader
) with the supervision edges (sp_test_loader
) i have some common edges (target leakage), this only happens in thetest_loader
but not in the initialtest_data
. Any help why this is happening?Beta Was this translation helpful? Give feedback.
All reactions