Add to node embeddings in a dynamic fashon in GCNConv #7686
-
I have the nodes and their temporal properties like this As you can see, node x1 has property p1 at step1 and p2 at step2. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I am not totally sure I understand the issue, but if your assingment between out = self.embedding(x[assign_index[0]]) + self.embedding(p[assign_index[1]]) |
Beta Was this translation helpful? Give feedback.
I am not totally sure I understand the issue, but if your assingment between
x
andp
changes dynamically, you somehow need to store this assignment somewhere and use it when accessing embeddings, e.g.: