-
Hi @rusty1s I am trying to run a simple GCN on Cornell dataset(WebKB). My model looks like this -
The dataset looks like this originally -
I do some modifications by converting it to NetworkX graph and then convert it back to PyG graph, to ensure I get the masks back I apply the random node split transform -
I get -
But when I try to test it I get the following error - Turns out in this line - |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Are you sure that there are any nodes in the test set? The |
Beta Was this translation helpful? Give feedback.
Are you sure that there are any nodes in the test set? The
test_mask
could be full of zeros, making the denominator zero.