import tensorflow as tf
message = tf.constant('Welcome to the exciting world of Deep Neural Networks!')
with tf.Session() as sess:
print(sess.run(message).decode())
报错:
AttributeError: module 'tensorflow' has no attribute 'Session'
该错误是版本的问题,因为在新的Tensorflow 2.X版本中已经移除了Session这一模块,故而需要使用最新的版本运行方式或者降低版本。
两种方法:
tf.compat.v1.Session()
或者:
sudo pip install tensorflow==1.14