RuntimeError: The Session graph is empty. Add operations to the graph before calling run().解决方法
问题产生的原因:无法执行sess.run()的原因是tensorflow版本不同导致的,tensorflow版本2.0无法兼容版本1.0.解决办法:tf.compat.v1.disable_eager_execution()#importtensorflowastf#正常应该是这个importtensorflow.compat.v1astf#兼容本地2.6的tensorflow环境下使用1.0的t