with tf.compat.v1.Session(graph=g) as sess:
时间: 2024-03-28 13:40:47 浏览: 124
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这是一个使用 TensorFlow 库创建的会话对象,其中 g 是一个 TensorFlow 计算图。在这个会话中,可以运行计算图中的操作,计算图中的变量也可以在会话中被更新。在 TensorFlow 2.x 版本中,不再需要使用 Session 对象,而是直接使用 Eager Execution 模式。
阅读全文