Eu sou novo no TensorFlow. Eu o instalei recentemente (versão da CPU do Windows) e recebi a seguinte mensagem:
Tensorflow-1.4.0 instalado com sucesso tensorflow-tensorboard-0.4.0rc2
Então, quando eu tentei correr
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()
(que encontrei em https://github.com/tensorflow/tensorflow )
Recebi a seguinte mensagem:
2017-11-02 01: 56: 21.698935: IC: \ tf_jenkins \ home \ espaço de trabalho \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc: 137] Sua CPU suporta instruções de que este O binário TensorFlow não foi compilado para uso: AVX AVX2
Mas quando eu corri
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
funcionou como deveria e produziu Hello, TensorFlow!
, o que indica que a instalação foi bem-sucedida, mas há algo mais errado.
Você sabe qual é o problema e como corrigi-lo?
>>> 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
.