chennnM / GCNII

PyTorch implementation of "Simple and Deep Graph Convolutional Networks"
325 stars 72 forks source link

Identity mapping #13

Open GNN-zl opened 3 years ago

GNN-zl commented 3 years ago

Hi, I want to test the performance of adding identity mapping. I try to comment out output = theta*torch.mm(support, self.weight)+(1-theta)*r, and add the line output = support. Now it's APPNP, right? But the result is the same as before 85.7% , why?