Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2问题解决

出现Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2问题:在这里插入图片描述
解决方案:
在代码里加入

import os
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"

结果显示,该提示消失:
在这里插入图片描述

注:
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

你可能感兴趣的:(Tensorflow相关)