* Created on 2017年05月15日
* author: MJ
* project: machine_learning
* 本人会陆续将自己使用过的机器学习算法示例进行整理,放在此项目,欢迎各位读者挑错指正,如果你想与更多的小伙伴们交流,可以加以下几个QQ群:
TensorFlow深度学习交流NLP群(299814789)
TensorFlow深度学习交流CV群(397163918)
* 1、IDE PyCharm Community Edition 2016.1.5
* 2、安装 python 2.7 (没有请自行网上查找)
* 3、安装 pip
sudo easy_install pip
* 4、安装 virtualenv
pip install virtualenv
* 5、安装环境
sh scripts/env_prepare.sh
* 6、更新环境
备注: 如果是GPU环境,需要将requiremens.txt中的tensorflow替换成tensorflow-gpu
sh scripts/env_update.sh
- classification (分类任务)
- cnn (卷积神经网络)
- text_cnn (用于文本分类的TextCNN模型) 详情见text_cnn下的README.md
- cnn (卷积神经网络)