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()

1 import tensorflow as tf
2 tf.compat.v1.disable_eager_execution() 3 hello = tf.constant('Hello, TensorFlow!') 4 config = tf.compat.v1.ConfigProto(allow_soft_placement=True) 5 config.gpu_options.per_process_gpu_memory_fraction = 0.9 6 sess= tf.compat.v1.Session(config=config) 7 print(sess.run(hello))

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM