実行環境
・windows 10
・python 3.7.4(by Anaconda)
・tensorflow 2.0.0(by conda)
・keras 2.2.4(by conda)
Anacondaはデフォルトでインストールしました。
インストールしたtensorflowとkerasの動作確認のために以下のコードをjupyter notebookに打ちました。
python
1import numpy as np 2import tensorflow as tf 3hello = tf.constant('Hello TensorFlow!') 4sess = tf.Session() 5print(sess.run(hello)
するとこのようなエラーが出力されてしまいました。
python
1AttributeError Traceback (most recent call last) 2 3 2 import tensorflow as tf 4 3 hello = tf.constant('Hello TensorFlow!') 5----> 4 sess = tf.Session() 6 5 print(sess.run(hello)) 7 8AttributeError: module 'tensorflow' has no attribute 'Session
どうすれば解決できるでしょうか?
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/25 14:05