Replies: 1 comment 2 replies
-
It's true that the |
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
-
Can someone point me to an example of a benchmark graph classification dataset where both the nodes and edges have features? What is the SOTA GNN for it? I browsed TUDatasets, but I could hardly find any that have both edge and node features. For the few that include both, like BZR_MD, I couldn't find the GNN benchmark performance for it. The reason I'm asking is because I constructed the following model (see below) which uses GINE for my dataset which includes both node and edge features. The model always ends up predicting the majority class in my dataset for all test examples (even though I don’t have much class imbalance). I'm unsure if the problem is because of the data, or because there something wrong with my implementation. So I thought I'd test out my model on some benchmark in order to see how it performs on it, which would help me figure out if the problem is mostly from the data or from the implementation of the model. Of course, looking at the code and confirming that my implementation below is not "buggy" would help too. I added in comments in case you can help out with this!
Beta Was this translation helpful? Give feedback.
All reactions