码迷,mamicode.com
首页 > 其他好文 > 详细

tensorflow版本2.0和1.0兼容问题:The Session graph is empty. Add operations to the graph before calling run().解决方法

时间:2020-04-27 22:23:02      阅读:543      评论:0      收藏:0      [点我收藏+]

标签:port   ons   产生   兼容   imp   const   on()   run   函数   

问题产生的原因:无法执行sess.run()的原因是tensorflow版本不同导致的,tensorflow版本2.0无法兼容版本1.0.
解决办法:
tf.compat.v1.disable_eager_execution()

import tensorflow as tf
tf.compat.v1.disable_eager_execution() #保证sess.run()能够正常运行
hello = tf.constant(‘hello,tensorflow‘)
sess= tf.compat.v1.Session()#版本2.0的函数
print(sess.run(hello))

tensorflow版本2.0和1.0兼容问题:The Session graph is empty. Add operations to the graph before calling run().解决方法

标签:port   ons   产生   兼容   imp   const   on()   run   函数   

原文地址:https://www.cnblogs.com/peijz/p/12790498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!