Node names
#2229
Replies: 1 comment 3 replies
-
Only the node features are important, so you may need to find a way to encode that information into the feature vector. The node indices are expected to go from 0 to N - 1. |
Beta Was this translation helpful? Give feedback.
3 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.
-
Hi,
I have multiple graphs, taking from Reddit social network. Each node in each graph represents a Reddit user. I want to implement a graph classification solution. Indeed some of the nodes (users) are shared between different graphs.
When I am creating each graph in the package - should I keep the node index consistent between the different graphs? Is there any meaning to the node index in the graph?
As an example - when I create graphA with three nodes (1,2,3) and graphB with three nodes (3,4,5). Will the different algorithms take into account the fact that node 3 is shared between graphA and graphB or the index of the node has no meaning and only the X features are important?
thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions