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
File "OctConv-master\octconv.py", line 100, in forward
high_group_out = high_group_hh + low_group_upsampled
RuntimeError: The size of tensor a (11) must match the size of tensor b (10) at non-singleton dimension 3
This is due to that fact that the code isn't able handle the valid padding as it isn't made very clear in the original paper. I'm fixing this up and will push it up shortly.
This is my code :
class Accurate_Modle((torch.nn.Module)):
def init(self,data_kind,padding):
super(Accurate_Modle, self).init()
self.con6 = torch.nn.Conv2d(2*112,384, kernel_size=1, stride=1, padding=0)
self.con7 = torch.nn.Conv2d(384, 384, kernel_size=1, stride=1, padding=0)
self.con8 = torch.nn.Conv2d(384, 384, kernel_size=1, stride=1, padding=0)
self.con9 = torch.nn.Conv2d(384, 1, kernel_size=1, stride=1, padding=0)
if data_kind=='mb':
The text was updated successfully, but these errors were encountered: