我在Jupyter中运行tf.InteractiveSession()
时遇到问题,我不确定如何修改它。我是一个初学者,所以希望您能提供一些指导!
在此处输入此代码:
import tensorflow as tf
sess = tf.InteractiveSession()
x = tf.constant([[1, 2]])
negMatrix = tf.negative(x)
result = negMatrix.eval()
print(result)
sess.close()
产生此错误消息:
**AttributeError**: module 'tensorflow' has no attribute 'InteractiveSession'