gcn icon indicating copy to clipboard operation
gcn copied to clipboard

Application of GCN and R-GCN

Open AmoghM opened this issue 5 years ago • 1 comments

I am new to the GCN research and was trying to differentiate which GCN is suitable for different problems. Here is what I think:

  1. GCN is useful for undirected graph
  2. GCN doesn't utilize edge attributes/features
  3. R-GCN is useful for directed graph
  4. R-GCN utilizes edge attributes/features.

I might be wrong but I really appreciate if you (@tkipf ) could clear this doubt for me. Thanks

AmoghM avatar Jun 26 '20 04:06 AmoghM

GCN utilizes edge attributes. previous regularizing techniques consider node similarity, but GCN considers node features. its in the loss function (eq. 8 ). GCN can be used for directed graphs by constructing it as a bipartite graph. See https://www.microsoft.com/en-us/research/wp-content/uploads/2017/01/SDG.pdf for using bipartite graphs for learning on directed graphs

QasimWani avatar Jun 06 '21 06:06 QasimWani