module 'tensorflow' has no attribute 'Session' code example
Example 1: 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
To get TF 1.x like behaviour in TF 2.0 one can run
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
Example 2: AttributeError: module 'tensorflow' has no attribute 'GraphDef'
tf.compat.v1.GraphDef()
tf.compat.v2.io.gfile.GFile()
Example 3: AttributeError: module 'tensorflow' has no attribute 'Session' site:stackoverflow.com
sess = tf.compat.v1.Session()
print(sess.run(hello))
Example 4: module 'tensorflow' has no attribute 'session'
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant('Hello, TensorFlow!')
sess = tf.compat.v1.Session()
print(sess.run(hello))
Example 5: module 'tensorflow' has no attribute 'InteractiveSession'
sess=tf.compat.v1.InteractiveSession()