[Python] TensorFlow 錯誤

Charles C. N. Wang
1 min readOct 29, 2017

--

當你安裝完TensorFlow,第一次使用Python 執行TensorFlow時,如:顯示Hello, TensorFlow。

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

出現錯錯誤碼:
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn’t…..

解決方法,在程式碼中加入:

import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'

--

--

Charles C. N. Wang
Charles C. N. Wang

Written by Charles C. N. Wang

從小到大練田徑,半路出家讀生物醫學資訊,喜愛的卻是台灣廟會。目前專注於自然語言、語意計算、機器學習、深度學習、數據科學的研究。熱衷學習與挑戰解決數據科學與人工智慧問題。

No responses yet