Tflearn的安装

  1. scipy-doc安装 sudo apt-get install python-scipy-doc安装python-scipy-doc
  2. h5py安装 sudo pip install h5py
  3. scipy安装 sudo pip3 install scipy
  4. tflearn安装 sudo pip install git+ https://github.com/tflearn/tflearn.git  等待成功后输入命令 git clone https://github.com/tflearn/tflearn –recursive,将tflearn的库拷贝到你的linux上

Tflearn安装检验

  1. cd tflearn/examples/images/,然后输入命令python alexnet.py
  2. 然后另打开一个终端,输入命令python tensorflow/tensorboard/tensorboard.py –logdir=/tmp/tflearn_logs
  3. 打开浏览器输入localhost:6006,就可以通过浏览器查看整个训练过程以及各种有关精确度等数据走向
原文地址:https://www.cnblogs.com/fangpengchengbupter/p/7645017.html