AttributeError: module 'torch.nn.functional' has no attribute 'MultiLabelSoftMarginLoss'
时间: 2023-11-07 16:01:43 浏览: 184
开发errorjsp-手把手带你入门ssh项目
AttributeError: module 'torch.nn.functional' has no attribute 'MultiLabelSoftMarginLoss' 是由于torch.nn.functional模块中没有MultiLabelSoftMarginLoss这个属性导致的错误。要解决这个问题,可以尝试使用torch.nn.BCEWithLogitsLoss作为替代。
阅读全文