tkipf / gcn

Implementation of Graph Convolutional Networks in TensorFlow
MIT License
7.05k stars 1.99k forks source link

Effect of the number of epochs #195

Open Keramatfar opened 3 years ago

Keramatfar commented 3 years ago

Graph Convolution network models each node as an aggregation of the target node and its direct neighbors. By stacking more GCN layers we can access to further neighbors. I want to know, does training the model with some epochs on a one layer GCN has the effect similar to adding the second layer? or, Does second epoch of training means that the second neighbors' representations are affecting the target node representation?