Replies: 1 comment 6 replies
-
The best way I can think of right now is to sample a number of nodes/seed nodes, and then compute the induced subgraph for these. Alternatively, you may be able to leverage |
Beta Was this translation helpful? Give feedback.
6 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.
Uh oh!
There was an error while loading. Please reload this page.
-
I have some snapshots of a dynamic graph. I want to use some static gnn methods, such as GAT, to generate embeddings of nodes in each snapshot and use RNN to encode the the whole snapshots' node embeddings.
The number of nodes of the snapshots is very large and the number of snapshots is also very large. So that I can't generate all nodes' embeddings of all snapshots with GAT at the same time. So I want to generate a batch of nodes' embeddings of every snapshots with GAT and feed them into the RNN module.
How can i create batch for train or test? Specificly, how can i make sure the embeddings obtained from different snapshot belonged to the same nodes?
Beta Was this translation helpful? Give feedback.
All reactions