yujiali / ggnn

Gated Graph Sequence Neural Networks
MIT License
275 stars 59 forks source link

How to use both node annotation and node labels? #4

Closed jenniferSun27 closed 6 years ago

jenniferSun27 commented 6 years ago

Hi, I noticed in the propagation model in the paper you used node annotations as initial node representations, while it seems that node labels are not used then. What if I'd like to use information in node labels and also want to mark some nodes as special?

Thank you very much.

yujiali commented 6 years ago

Hi,

These two - the node annotations and node labels, were used interchangeably. Node labels or annotations, whatever you call it, they are properties associated with the nodes, so really no difference. In the paper we fed in these node properties to initialize their states, but we can also have them be fed in each round of propagation, if that helps anything.