How to impement a fully adjacent layer in GCN? #6887
codeastra2
started this conversation in
General
Replies: 1 comment
-
You mean a fully-connected graph? That is determined by the input, i.e., edge_index = torch.ones(num_nodes, num_nodes).nonzero().t() but keep in mind that this may be slow to run since we are basically using an operator designed for sparse inputs on a fully-connected graph. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to implement a fully adjacent layer in GNN models. i currently have an architecture like so:
How can I make conv4 have a fully adjacent network?
Beta Was this translation helpful? Give feedback.
All reactions