Replies: 1 comment
-
Hi, the issue here is that Spektral currently does not support heterogeneous features. The correct way to do this would be to have a custom message function for every type of node, directly in the GNN layers, but I have had no time to add new features to the library recently. Cheers |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all, I have two datasets with different features and nodes and we wanted to build an autoencoder using spektral with data loaded in disjoint mode. For each dataset I generate a kNN graph. When
spektral
loads the adjancency matrices for datasets A and B, it is done like this:and, since both datasets are made of different features (say
f(A)
andf(B)
), I am passing features padding them to 0 like this:When run the decoder, some features that were padded are now non-zero. While I understand why those values appear, I can possibly ignore them, I have some questions:
Beta Was this translation helpful? Give feedback.
All reactions