Replies: 1 comment 1 reply
-
Thanks for reporting. You can safely remove it (as long as If your model is underperforming, I feel that there needs to exist another issue. |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
I am using PyG for link prediction on a heterogeneous graph based on this example. There, the edge labels are integer numbers from 1 to 5; but, in my data, edge labels are float numbers from 0 to 4, and my task is to predict continuous edge labels by reducing the MSE. When I use RandomLinkSplit for cross-validation, I am facing an error at RandomLinkSplit-line 267 that says I cannot have float numbers as edge labels:
Since I do not need negative sampling here, I tried removing the command above. The algorithm worked but the model does not seem to be trained properly and the results are not good. I really appreciate it if you would comment on my problem to see if I am allowed to remove this command or there are other solutions for my task.
Beta Was this translation helpful? Give feedback.
All reactions