TensorFlow'da yeniyim. Son zamanlarda yükledim (Windows CPU sürümü) ve aşağıdaki mesajı aldım:
Tensorflow-1.4.0 başarıyla kuruldu tensorflow-tensorboard-0.4.0rc2
Sonra koşmaya çalıştığımda
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 aracılığıyla buldum )
Aşağıdaki mesajı aldım:
2017-11-02 01: 56: 21.698935: IC: \ tf_jenkins \ home \ çalışma alanı \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc: 137] CPU'nuz bunun talimatlarını destekliyor TensorFlow ikili dosyası kullanılmak üzere derlenmedi: AVX AVX2
Ama koştuğumda
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
olması gerektiği gibi çalışıyordu ve çıktı Hello, TensorFlow!
, bu da kurulumun gerçekten başarılı olduğunu gösteriyor, ancak yanlış olan başka bir şey var.
Sorunun ne olduğunu ve nasıl düzeltileceğini biliyor musunuz?
>>> 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
.