我正在this tutorial中运行此代码。
输出:
I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
[INFO] approx. FPS: 10, assume reach to 30
为什么代码在CPU上运行?
我有一个GPU,并且我使用tensorflow-gpu
安装了TensorFlow。
答案 0 :(得分:-1)
如果您有GPU,则无需在意。您可以使用此方法忽略警告
import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
import tensorflow as tf
如果您想了解更多信息,可以阅读: