Replies: 1 comment 2 replies
-
I think you mix up |
Beta Was this translation helpful? Give feedback.
2 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.
-
Hi everyone,
I'm encountering unexpected behavior with the RandomLinkSplit in PyTorch Geometric. Before splitting edges, my original graph has 236,448 edges. I'm using the following code for the train-test split:
then calling
Despite setting num_test to False, the resulting graphs have unexpected edge counts:
Two peculiarities: 1) the test-to-val ratio is not 0.15 as specified, and 2) the test graph contains edges despite explicitly setting num_test to False. The same thing happens if I set num_test = 0.0
Also, if I set num_test = 0.1 and num_val =0.1, I get
I would greatly appreciate any insights into what might be causing this behavior. Thanks in advance for your help!
Beta Was this translation helpful? Give feedback.
All reactions