TensorFlowは初めてです。最近インストールしました(Windows CPUバージョン)と次のメッセージが表示されました:
tensorflow-1.4.0 tensorflow-tensorboard-0.4.0rc2が正常にインストールされました
それから私が走ろうとしたとき
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
sess.run(hello)
'Hello, TensorFlow!'
a = tf.constant(10)
b = tf.constant(32)
sess.run(a + b)
42
sess.close()
(私はhttps://github.com/tensorflow/tensorflowで見つけました)
次のメッセージを受け取りました。
2017-11-02 01:56:21.698935:IC:\ tf_jenkins \ home \ workspace \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc:137] CPUはこれをサポートする命令をサポートしていますTensorFlowバイナリが使用するようにコンパイルされていません:AVX AVX2
しかし、私が走ったとき
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
Hello, TensorFlow!
正常に実行され、出力されました。これは、インストールが実際に成功したことを示していますが、他に何か問題があります。
あなたは問題が何であり、それを修正する方法を知っていますか?
>>> sess = tf.Session() 2017-11-05 18:02:44.670825: I C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\ 35\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instruct ions that this TensorFlow binary was not compiled to use: AVX AVX2
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
。メッセージはです。