pip操作安装了的tensorflow会有提示:Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2,原因好像是编译问题,cpu没有得到充分的利用,如果从官网下载源码不会有这种问题,如果用gpu可以忽略,使用:
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' #忽略烦人的警告
2024-02-14 20:18:10
pip操作安装了的tensorflow会有提示:Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2,原因好像是编译问题,cpu没有得到充分的利用,如果从官网下载源码不会有这种问题,如果用gpu可以忽略,使用:
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' #忽略烦人的警告