AttributeError:__enter__ -stackoverflow

时间:2019-12-03 06:32:03

标签: python

我正在编写python程序并在Google合作实验室中运行。但是它未能通过编译,并给出了AttributeError。有谁可以帮助我?非常感谢。

 total = []
 with tf.compat.v1.Session as sess:
      sess.run(init_op)
      writer = tf.compat.v1.summary.FileWriter('graphs',sess.graph)

AttributeError:输入

1 个答案:

答案 0 :(得分:0)

Session中添加括号。

with tf.compat.v1.Session() as sess: