AttributeError: module 'tensorflow' has no attribute 'InteractiveSession'什么意思
时间: 2023-10-04 12:10:54 浏览: 132
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常发生在使用TensorFlow时,你可能使用了过时的代码。在TensorFlow 2.0及以上版本中,InteractiveSession已经被废弃,应该使用tf.compat.v1.InteractiveSession()代替。如果你使用的是TensorFlow 1.x版本,那么请确保你已经正确导入了TensorFlow。
阅读全文