Replies: 1 comment 5 replies
-
How does your model look like? Is this task actually solvable by a GNN? Do features of neighbors give information about central node coordinates? In general, most GNN might also fail to learn anything meaningful on fully-connected graphs since each node will receive the same set of messages. |
Beta Was this translation helpful? Give feedback.
5 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.
-
Good evening, thank you for the library and the useful guides.
I'm trying to train an autoencoder for a graph (fully connected) that only has coordinates as features.
The generated dataset (random graphs with 10 nodes) is generated. I then create the associated class
As described in the autoencoder tutorial
Ill skip the other lines, which are identical to your guide, and skip to the train / test portion
However
ValueError: Only one class present in y_true. ROC AUC score is not defined in that case.
I tried generating data with y=node_features but clearly that wasn't the answer.
Am i getting it all wrong? I just want to encode graphs with n_nodes, 2 features each into 16-dimensional nodes, but maybe i misunderstood what autoencoders are for?
Beta Was this translation helpful? Give feedback.
All reactions