AttributeError: module 'torch.nn.functional' has no attribute 'MultiLabelSoftMarginLoss'
时间: 2023-11-07 14:01:43 浏览: 169
Pytorch中torch.nn的损失函数
AttributeError: module 'torch.nn.functional' has no attribute 'MultiLabelSoftMarginLoss' 是由于torch.nn.functional模块中没有MultiLabelSoftMarginLoss这个属性导致的错误。要解决这个问题,可以尝试使用torch.nn.BCEWithLogitsLoss作为替代。
阅读全文