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
len(supports) in self.gconv.append(gcn(dilation_channels,residual_channels,dropout,support_len=len(supports))) should be replaced as self.supports_len.
Otherwise when no supports are passed in, since self.supports is an empty list, it will cause the dimension c_in of the mlp in gcn to not match the data. I think this is why the author specifically maintained the variable self.supports_len earlier and +1
The text was updated successfully, but these errors were encountered:
len(supports)
inself.gconv.append(gcn(dilation_channels,residual_channels,dropout,support_len=len(supports)))
should be replaced asself.supports_len
.Otherwise when no supports are passed in, since self.supports is an empty list, it will cause the dimension c_in of the mlp in gcn to not match the data. I think this is why the author specifically maintained the variable self.supports_len earlier and +1
The text was updated successfully, but these errors were encountered: