You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was reading the Thomas N. Kipf pytorch implementation of GCN [https://github.com/tkipf/pygcn/blob/master/pygcn/layers.py]. If I understand correctly, he adds bias to every GCN layer output [line 35].
Why is it so? Is it required to be done in Numpy implementation, too?
Also, there is no linear layer before the softmax layer. Why does the numpy implementation have a linear layer before the softmax implementation in the softmax_layer function?
Please help
Thank you
The text was updated successfully, but these errors were encountered:
All of these permutations you're describing are sensible options, and I'm not aware of any good reason to decide one way vs the other, aside from checking empirically what works the best. It will also probably depend on the data.
Hi,
Why is it so? Is it required to be done in Numpy implementation, too?
Please help
Thank you
The text was updated successfully, but these errors were encountered: