1. 程式人生 > >Artificial Intelligence Technology

Artificial Intelligence Technology

1.TensorFlow安裝

  pip install tensorflow   (命令列安裝方式)

  可以在pycharm中object interpreter中之間搜尋安裝

 

遇到的問題及其解決方法

  1.  報出錯誤資訊: Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2

    需要在Python檔案頭部新增即可

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