module 'tensorflow._api.v2.train' has no attribute 'Saver'
时间: 2023-07-21 10:59:27 浏览: 90
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误信息意味着在 TensorFlow 的版本中,train 模块下已经没有名为 saver 的属性了。
在 TensorFlow 2.0 以后的版本中,模型的保存和加载可以使用 tf.keras.models 模块下的 save 和 load_model 方法来实现。您可以尝试使用以下代码来保存模型:
```
import tensorflow as tf
model = tf.keras.models.Sequential([...]) # 定义模型
# 训练模型...
model.save('my_model') # 保存模型
```
如果您需要加载已经保存的模型,可以使用以下代码:
```
import tensorflow as tf
model = tf.keras.models.load_model('my_model') # 加载模型
# 使用模型进行预测...
```
希望这个回答能对您有帮助。
阅读全文