मैं TensorFlow में नया हूं। मैंने हाल ही में इसे (Windows CPU संस्करण) स्थापित किया है और निम्न संदेश प्राप्त किया है:
सफलतापूर्वक स्थापित टेंसोरफ़्लो-1.4.0 टेंसरफ़्लो-टेंसरबोर्ड-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: आईसी: \ tf_jenkins \ home \ workspace \ rel-win \ M \ windows \ PY \ 36 \ tsorflow \ core \ platform \ 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!
, जो दर्शाता है कि स्थापना वास्तव में सफल थी, लेकिन कुछ और है जो गलत है।
क्या आप जानते हैं कि समस्या क्या है और इसे कैसे ठीक किया जाए?
>>> 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
।