欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TypeError: super(type, obj): obj must be an instance or subtype of type

程序员文章站 2024-01-05 16:22:34
...

TypeError: super(type, obj): obj must be an instance or subtype of type
原因是定义的类名,与super地方不一致

class ME(nn.Module):
    def __init__(self):
        super(ME, self).__init__()
相关标签: 代码问题