pygcn icon indicating copy to clipboard operation
pygcn copied to clipboard

Xavier initialization use output size instead of input size

Open rFantic opened this issue 5 years ago • 0 comments

I notice the standard deviation for initialization used output size instead of input size. Is this implementation intended?

self.weight = Parameter(torch.FloatTensor(in_features, out_features)) stdv = 1. / math.sqrt(self.weight.size(1))

rFantic avatar Jun 27 '19 06:06 rFantic