我正在编写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:输入
答案 0 :(得分:0)
在Session
中添加括号。
with tf.compat.v1.Session() as sess: