Replies: 2 comments 11 replies
-
I think the most reasonable thing to do would be to maintain a |
Beta Was this translation helpful? Give feedback.
-
Hi @rusty1s , ok got it so to clarify - as long as 'node_red' is mapped to for example, the integer 0 in graph one and the same in graph two - then this node should have an identical mapping between both graphs when 'from networkx is run'right? so that now, the embedding for this node is the same in the global neural network? Then i assume the standard approach:
can be applied? many thanks! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am training a GAT on a batch of 10 individual graphs and classifying each one in to their respective communities as determined by Louvain-clustering. The node names are strings and some graphs contain more nodes than others. One thing that is important though is that there are similar nodes in different graphs. For example 'person A' is present in graph one, graph two, graph three etc... so the mapping (and thus embedding representation) clearly has to be common. But i realise this mapping might not be preserved in the dataset preparation script. Any help is appreciated. My dataset prep is as follows (I am using w2v vectors trained on these graphs individually as node features for each node in each graph):
The reason this is important is because, 'person A' might be node 0 in one graph, but node 19 in another graph, and so when converting from integers in the loop of each graph, this mapping is not preserved
I would appreciate any advice or solution to this. Many thanks!!
Beta Was this translation helpful? Give feedback.
All reactions