使用tensorflow调试过程中报错:
Error: Module ‘tensorflow’ has no attribute ‘gfile’ error while running tensorflow object detection api tutorial
原因是因为我的tf版本是2.1.2 函数名不对应
解决方法:
将相关的函数名改为: tf.io.gfile.GFile
查看tf版本:

gym:~$ python
>>>import tensorflow as tf
>>>print(tf.__version__)

TensorFlow不同版本对应的gfile函数名:
Version 1 : tf.gfile.GFile
Version 2 : tf.io.gfile.GFile

参考:
https://stackoverflow.com/questions/58363136/error-module-tensorflow-has-no-attribute-gfile-error-while-running-tensorfl

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐