Node level prediction with heterogenous GCN #8485
Unanswered
PietroLodiRizzini
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Since this is a regression use-case, pred = model(data.x_dict, data.edge_index_dict).argmax(dim=-1) looks incorrect to me? I think you just want to drop 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
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to train a GNN to predict the price of apartments by taking into account the features of the neighbourhood.
I have started with this simple graph structure built from tabular data:
where i have 2 node types, listing and poi. The task is to predict
data['listing'].y
which is the price of the listing.This is what I have so far:
The problem is that the predicted values are always 0 (i.e. [0, 0, ..., 0])
Any suggestion or advice would be strongly appreciated
Beta Was this translation helpful? Give feedback.
All reactions