Answers for "AttributeError: module 'tensorflow' has no attribute 'gfile'"

4

module 'tensorflow' has no attribute 'ConfigProto'

import tensorflow as tf
and then replace:

tf.ConfigProto by tf.compat.v1.ConfigProto

In fact, the compatibility built in 2.0 to get tf 1.: tf.compat.v1 is really helpful.
Posted by: Guest on February-18-2020
8

AttributeError: module 'tensorflow' has no attribute 'Session'

According to TF 1:1 Symbols Map, in TF 2.0 you should use tf.compat.v1.Session() instead of tf.Session()

https://docs.google.com/spreadsheets/d/1FLFJLzg7WNP6JHODX5q8BDgptKafq_slHpnHVbJIteQ/edit#gid=0

To get TF 1.x like behaviour in TF 2.0 one can run

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
Posted by: Guest on May-10-2020
-1

AttributeError: module 'tensorflow' has no attribute 'gfile'

import tensorflow.compat.v1 as tf
Posted by: Guest on October-20-2020
0

AttributeError: module 'tensorflow' has no attribute 'gfile'

# In TensorFlow 2.0, tf.gfile.* is replaced by tf.io.gfile.*
Posted by: Guest on March-05-2021

Code answers related to "AttributeError: module 'tensorflow' has no attribute 'gfile'"

Browse Popular Code Answers by Language