Sono nuovo di TensorFlow. L'ho installato di recente (versione CPU di Windows) e ho ricevuto il seguente messaggio:
Tensorflow-1.4.0 tensorflow-tensorboard-0.4.0rc2 installato correttamente
Poi quando ho provato a correre
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()
(che ho trovato tramite https://github.com/tensorflow/tensorflow )
Ho ricevuto il seguente messaggio:
02/11/2017 01: 56: 21.698935: IC: \ tf_jenkins \ home \ area di lavoro \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc: 137] La tua CPU supporta le istruzioni che questo Il binario TensorFlow non è stato compilato per l'uso: AVX AVX2
Ma quando ho corso
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
ha funzionato come dovrebbe e ha prodotto Hello, TensorFlow!
, il che indica che l'installazione ha avuto successo, ma c'è qualcos'altro che non va.
Sai qual è il problema e come risolverlo?
>>> 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
.