Add operations to the graph before calling run().解决办法
#定义计算图tens1=tf.constant([1,2,3])#创建一个会话sess=tf.compat.v1.Session()#使用这个创建好的会话来得到关心的运算的结果。比如可以调用sess.run(result)#来得到张量result的取值print(sess.run(tens1))#关闭会话是的本次运行中使用的到的志愿可以被释放sess.close()报错:RuntimeError: