AttributeError: module 'tensorflow._api.v2.io.gfile' has no attribute 'FastGFile'什么意思
时间: 2023-10-18 18:29:17 浏览: 152
attribute详细介绍
这个错误通常发生在使用TensorFlow 2.x版本时,由于FastGFile已经被弃用,所以不能再使用它。在TensorFlow 2.x版本中,可以使用tf.io.gfile.GFile代替tf.gfile.FastGFile。如果你仍然想使用FastGFile,请确保你使用的是TensorFlow 1.x版本。
阅读全文