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

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

上一篇:Python Qt 学习笔记(一) Python Qt简介


下一篇:PySide2动态载入ui界面