I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this Tensor

问题:使用tensorflow出现

I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2

这不是错误,只是警告说,如果您从源代码构建TensorFlow,则在您的计算机上可以更快。

就像警告说的那样,仅在需要使TF更快时才应使用这些标志编译TF。

您可以使用TF环境变量TF_CPP_MIN_LOG_LEVEL,它的工作方式如下:

  • 默认为0,显示所有日志
  • 要过滤INFO日志,请将其设置为1
  • WARNINGS 另外,2
  • 并进一步过滤掉ERROR日志,将其设置为3

可以执行以下操作使警告静音:

import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
import tensorflow as tf

你可能感兴趣的:(python,tensorflow)