iT邦幫忙

0

做Tensorflow時遇到問題

  • 分享至 

  • xImage

請問,
我在安裝完Tensorflow後,做如下測試

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

出現如下訊息
AttributeError: 'NoneType' object has no attribute 'run'
這是什麼問題? 要如何解決?

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中
1
不明

tf.Session 是 tensorflow 1.X 在用的寫法。你可能裝了2以上的版本所以沒有出現你會期待他該有的行為,1.X 的版本不建議使用,尤其如果你是重新學 tensorflow 然後有選擇權就直接用 2.0 以後的教學開始。或是從 pytorch 開始學。

我要發表回答

立即登入回答