AttributeError: module 'tensorflow._api.v2.saved_model' has no attribute 'restore'
时间: 2023-08-22 16:10:40 浏览: 146
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为你使用的 TensorFlow 版本不兼容。在 TensorFlow 2.x 中,`restore` 方法已经被移除了,取而代之的是使用 `tf.keras.models.load_model` 来加载模型。你可以尝试更新 TensorFlow 到最新版本,然后修改代码中的相关部分来解决这个问题。
阅读全文