keras学习笔记之协助使用keras

keras模型可视化

          模型可视化需要两个软件graphviz和pydot,安装需要三个指令(对于python2.7)即可

                  sudo pip install graphviz(安装接口)
                  sudo apt-get install graphviz(安装软件本身)
                  sudo pip install pydot==1.1.0

                                                                 附参考博客地址http://blog.csdn.net/u010262413/article/details/64998428

keras模型保存

             模型保存需要安装hdf5和h5py,按照install file.txt安装到./configure时就出错,后来在网上找到这种方法

       

             sudo apt-get install libhdf5-dev
             sudo pip install h5py

                                                           参考 http://blog.csdn.net/linmingan/article/details/50736300 

                                                     http://blog.csdn.net/u010159842/article/details/54407745                                            
   

              安装好以后,保存形式有很多种,可以参考这个博客,进行不同形式的保存,最后一种model.save(filename)具体形式为model.save('my_model.h5')

 

貌似不用第一个指令,直接pip install h5py就行????(虚拟环境亦如此)

你可能感兴趣的:(keras)