TypeError: load() missing 1 required positional argument: 'export_dir'
时间: 2023-08-18 09:22:02 浏览: 203
一个更复杂的例子-hard_real-time_computing_systems
这个错误通常是因为你使用了错误的参数列表调用了 `tf.saved_model.load` 方法。在 TensorFlow 2.x 中,`tf.saved_model.load` 方法需要提供要加载的模型的导出目录作为位置参数,例如:
```python
import tensorflow as tf
model = tf.saved_model.load('/path/to/export/directory')
```
如果你在调用 `tf.saved_model.load` 方法时遇到了缺少位置参数的错误,可以检查一下传递给该方法的参数列表是否正确。另外,还要确保导出目录存在,并且其中包含了用于加载模型的必要文件。
阅读全文