RuntimeError: non-positive stride is not supported

应该是遇到过的最离谱的bug。。。。。

def __init__(self, in_channel, out_channel, group=32, s=1, n=0):

这样是错的;

def __init__(self, in_channel, out_channel, s=1, n=0, group=32):

调换下形参的位置就解决了。。。
长见识了

你可能感兴趣的:(神奇的bug,python)