Using Spektral to Link Prediction #183
Replies: 4 comments 10 replies
-
Hi, sure, it's possible to do link prediction with Spektral. I have put the example on my TODO list, I will reply here once it's done. |
Beta Was this translation helpful? Give feedback.
-
Hi, I just posted an implementation of link prediction with spektral here: https://github.com/joewilaj/nbaGNNs. See models.py. These models are used to predict score differential in nba basketball games. In order to do link prediction, the outputs of the chosen GCN layer are passed to a custom layer, 'game_vec' that extracts the relevent node representations to use for link prediction. Let me know if you have any questions Thanks, |
Beta Was this translation helpful? Give feedback.
-
To anyone finding this discussion looking for a link prediction example, check out this example too https://github.com/FilippoMB/Variational-Graph-Auto-encoders-Tensorflow-2-Spektral- |
Beta Was this translation helpful? Give feedback.
-
Following up on a similar question. If I wanted to make predictions on missing link features and node features (i.e. I know a link and node exist but the features on them are missing) within a graph, are there any examples out there for this? Do the predictions have to be done in a specific order (node and then link or link and then node) or can they be predicted at the same time/in the same process? I apologize if I am not asking this properly; GNNs are extremely new to me. |
Beta Was this translation helpful? Give feedback.
-
Good morning!
I am interested to do link prediction task using Graph Neural Networks, Spektral supports this problem? If it's possible, do you have a basic example for it ?
Beta Was this translation helpful? Give feedback.
All reactions