小错误记录:‘Loss‘ object has no attribute ‘_forward_pre_hooks

记录一个小错误:
使用pytorch 自定义loss时出现了这样的错误:
torch.nn.modules.module.ModuleAttributeError: ‘Loss’ object has no attribute ‘_forward_pre_hooks’

目录

  • 出现原因
  • 总结


出现原因

写 super 继承时 ,忘记加self

# 原代码 未加self 
class LossSSIM(nn.Module):
    def __init__(self, k1=0.01, k2=0.03, L=255):
        super(LossSSIM).__init__()
# 修改后 增加了self
class LossSSIM(nn.Module):
    def __init__(self, k1=0.01, k2=0.03, L=255):
        super(LossSSIM, self).__init__()

总结

虽然这是个低级小错误,但是偶尔遇到一次,还是找了蛮久的时间,在这里做个记录

你可能感兴趣的:(python,pytorch,pytorch,python)