Je suis nouveau sur TensorFlow. Je l'ai récemment installé (version CPU Windows) et j'ai reçu le message suivant:
Tensorflow-1.4.0 Tensorflow-Tensorboard-0.4.0rc2 installé avec succès
Puis quand j'ai essayé de courir
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 j'ai trouvé sur https://github.com/tensorflow/tensorflow )
J'ai reçu le message suivant:
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] Votre CPU prend en charge les instructions que ce Le binaire TensorFlow n'a pas été compilé pour utiliser: AVX AVX2
Mais quand j'ai couru
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
il s'est déroulé comme il se doit et a généré une sortie Hello, TensorFlow!
, ce qui indique que l'installation a réussi, mais il y a autre chose qui ne va pas.
Savez-vous quel est le problème et comment le résoudre?
>>> 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
.