分享至
請問,我在安裝完Tensorflow後,做如下測試
import tensorflow as tfhello = tf.constant('Hello, TensorFlow!')sess = tf.Session()print(sess.run(hello))
出現如下訊息AttributeError: 'NoneType' object has no attribute 'run'這是什麼問題? 要如何解決?
已邀請的邦友 {{ invite_list.length }}/5
https://stackoverflow.com/questions/47721792/tensorflow-tf-get-default-session-after-sess-tf-session-is-none看一下是不是跟這篇遇到一樣的問題
參考看看!https://blog.csdn.net/linweieran/article/details/117675085https://blog.csdn.net/lvsehaiyang1993/article/details/80910104
tf.Session 是 tensorflow 1.X 在用的寫法。你可能裝了2以上的版本所以沒有出現你會期待他該有的行為,1.X 的版本不建議使用,尤其如果你是重新學 tensorflow 然後有選擇權就直接用 2.0 以後的教學開始。或是從 pytorch 開始學。
IT邦幫忙