Performing node level Regression/classification without Repetition #6694
-
I have created a custom graph based dataset using the tutorials mentioned at the following url of Pygeomtric: Creating Your Own Datasets. As I am very new to PyG , I wanted to know if I can refer to any material or can make something like this possible ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Mh, this task is new to me, but it looks like you want to perform ranking over nodes. There exists a lot of ranking losses, e.g., BPR loss which you can use. Afterwards, you can validate the order of ranking via |
Beta Was this translation helpful? Give feedback.
Mh, this task is new to me, but it looks like you want to perform ranking over nodes. There exists a lot of ranking losses, e.g., BPR loss which you can use. Afterwards, you can validate the order of ranking via
pred.argmax()
.