Best Structure-based Node Features #4746
Unanswered
bardia-esmaeili
asked this question in
Q&A
Replies: 1 comment 3 replies
-
|
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have a set of directed graphs, each belonging to a single class out of 4 possible classes. I want to classify and also perform anomaly detection techniques on these graphs. There are no node-based or edge-based features, so I've relied on the following structure-based features measured by networkx for each node:
input degree, output degree, betweenness centrality, closeness centrality, and eigenvector centrality.
The reason for choosing these features is that they seemed to be the prominent features used by the community. My questions are as follows:
If you think that this is not a good idea, should I pass the features unnormalized (e.g. input degree = 50 for a node), or should I do normalization in a different manner? if so, what normalization approach would you suggest?
(edit: I think that I definitely need to perform some sort of normalization since for some nodes the value of betweenness reaches 60,000 :) )
Thank you
Beta Was this translation helpful? Give feedback.
All reactions