AttributeError: module 'tensorflow' has no attribute 'gfile'
时间: 2023-09-19 09:08:28 浏览: 178
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为TensorFlow的版本问题导致的,旧版本的TensorFlow中有gfile模块,但是在新版本中已经被删除了。可以尝试使用以下代码替换掉使用gfile的地方:
```python
import tensorflow.compat.v1 as tf
tf.gfile = tf.io.gfile
```
这将把TensorFlow的新版IO操作代替gfile模块的使用。
阅读全文