最佳答案
我最近安装了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: I C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\36\tensorflow\core\平台\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!
,这表明安装确实成功,但还有其他问题。
你知道问题是什么以及如何解决它吗?