Replies: 1 comment
-
I remember I encountered a similar issue and I think #7791 fixed it. Would you mind trying it again with the master branch or nightly release? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Using
LinkNeighborLoader
on a Heterogeneous graph with binary negative sampling will return an edge store like this (batch size=8).It makes sense that
edge_label_index
is twice the batch size, as it has 8 positive samples and 8 negative samples (which can be selected usingedge_label
). But then what isedge_index
for? Why does it have 15 pairs? Why not 8? If I disable negative sampling, there would be exactly 8 samples (butedge_label_index
still exists).Are the "positive samples" generated twice?
Beta Was this translation helpful? Give feedback.
All reactions