module 'mindspore.nn' has no attribute 'SigmoidCrossEntropyWithLogits'
时间: 2023-10-21 19:32:20 浏览: 80
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是因为您正在使用的 MindSpore 版本中没有定义 `SigmoidCrossEntropyWithLogits` 这个 API。请确认您的 MindSpore 版本是否支持该 API。
如果您使用的是较早的 MindSpore 版本,则可以尝试更新到最新版本,或者使用其他可用的交叉熵损失函数,如 `nn.SigmoidCrossEntropyWithLogits` 或 `nn.BCEWithLogitsLoss`。如果您使用的是较新的 MindSpore 版本,但仍然遇到此错误,请检查您的代码是否存在拼写错误或其他语法问题。
阅读全文