Tensorflow 启程

今天开启了我的人工智能start第一站--深度学习框架TensorFlow

因为做的慢遇到的问题不多,大致如下:

1.首先TensorFlow-gpu版是不支持A卡的因为,它基于CUDA,目前仅支持N卡。

2.在写第一个Tensorflow示例代码的时候遇到的小问题

Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2

经过谷歌后在代码开头加上:

import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'

完美解决!!

 

猜你喜欢

转载自blog.csdn.net/HYbuery/article/details/80549534