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

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__()