AttributeError: 'Session' object has no attribute 'graph'
时间: 2023-11-16 08:05:29 浏览: 129
python报错: list object has no attribute shape的解决
AttributeError: 'Session' object has no attribute 'graph'是因为TensorFlow版本更新导致的问题。在TensorFlow 2.0及以上版本中,Session已经被tf.compat.v1.Session()所取代,而tf.compat.v1.Session()没有graph属性。如果你想要获取图的信息,可以使用tf.compat.v1.get_default_graph()函数来获取默认图的信息。
阅读全文