AttributeError: module 'tensorflow.keras.losses' has no attribute 'total_loss'
时间: 2023-10-29 17:06:47 浏览: 165
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为你的TensorFlow版本过低导致的。在TensorFlow 2.0及以上版本中,`total_loss`已被弃用。相反,你可以使用`add_loss`方法来添加损失。如果你想使用`total_loss`,你需要将TensorFlow版本降至1.x。你可以通过以下方式解决这个问题:
1.升级TensorFlow版本到2.0及以上版本,使用`add_loss`方法来添加损失。
2.如果你想使用`total_loss`,则需要将TensorFlow版本降至1.x。
阅读全文