PSConv icon indicating copy to clipboard operation
PSConv copied to clipboard

I wonder why the code psconv.py are not consistent with the description in the paper?

Open wuzhenyubuaa opened this issue 4 years ago • 0 comments

x1, x2 = x.chunk(2, dim=1)
x_shift = self.gwconv_shift(torch.cat((x2, x1), dim=1))
return self.gwconv(x) + self.conv(x) + x_shift

I think the code is simply add with different dilation.

wuzhenyubuaa avatar Jan 29 '21 10:01 wuzhenyubuaa