在導入tensorflow後,進行運算時,出現了報錯Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2ide
解決方法this
在最頂行寫入如下代碼便可spa
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
參考資料:Advanced Vector Extensions code
import os os.environ["TF_CPP_MIN_LOG_LEVEL"]='1' # 這是默認的顯示等級,顯示全部信息 os.environ["TF_CPP_MIN_LOG_LEVEL"]='2' # 只顯示 warning 和 Error os.environ["TF_CPP_MIN_LOG_LEVEL"]='3' # 只顯示 Error