Performance of 8-layer GCN
See original GitHub issueHi DropEdge Team,
I am running experiments on 8-layer GCN (using DropEdge) in the semi-supervised setting. I used the default hyper-parameters as 2-layer GCN and changed --nbaseblocklayer 0
to --nbaseblocklayer 6
in script/semi-supervised/cora_GCN.sh
. On Cora dataset, the 2-layer GCN performance is 82.8% while 8-lay GCN is only 16%, not 75.80%. Could you please tell me how I can reproduce the results shown in readme?
Thank you.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Effect of the different graph convolutional network (GCN ...
Method We utilised a standard 8-layer CNN, then integrated two improvement techniques: (i) batch normalization (BN) and (ii) dropout (DO). Finally, we utilized ......
Read more >Tackling Over-Smoothing for General Graph Convolutional ...
GCN -4+DropEdge. Fig. 1: Performance of GCNs on Cora. We implement 4-layer and 8-layer GCNs w and w/o DropEdge. GCN-4 gets stuck.
Read more >Cluster-GCN: An Efficient Algorithm for Training Deep and Large ...
We find that the efficiency of a mini-batch algorithm can be characterized by the notion of ... We show a detailed convergence of...
Read more >Going Deep: Graph Convolutional Ladder-Shape Networks
classical and state-of-the-art methods to demonstrate the solid performance of GCLN on graph node classification. The experiments with 8-layer GCN and GAT ...
Read more >pathGCN: Learning General Graph Spatial Operators from Paths
pressive GCNs for improved performance. In this paper we propose pathGCN, a novel approach to learn the spatial operator from random paths on...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have the same problem as you,It should be that the parameters of the multi-layer GCN are not given, and you cannot simply set --nbaseblocklayer 0 to --nbaseblocklayer 6 in script/semi-supervised/cora_GCN.sh
What are your parameters? When I try to reproduce the multi-layer GCN, the
nhiddenlayer
is fixed to 1 and I can only modify nbaseblocklayer. Thanks in advance.