there is some error when i use pyro and pytorch:
RuntimeError:
Cell In[9], line 54
51 # 直接使用self.conv.stride,保持3维stride
52 stride = self.conv.stride if isinstance(self.conv.stride, tuple) else (self.conv.stride,) * 3
---> 54 return F.conv3d(x, weight, bias, stride, self.conv.padding, self.conv.dilation, self.conv.groups)
55 else:
56 return None
RuntimeError: expected stride to be a single integer value or a list of 4 values to match the convolution dimensions, but got stride=[1, 1, 1]
i do not want to show the detail ,it is too long