其他分享
首页 > 其他分享> > RuntimeError: non-positive stride is not supported

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):

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

标签:__,group,positive,RuntimeError,supported,init,self,channel,out
来源: https://blog.csdn.net/qq_45862064/article/details/120151034