├── AspectSentimentAnalyze ├── .ipynb_checkpoints │ ├── car_review_memory_nn-checkpoint.ipynb │ └── car_review_tc_lstm-checkpoint.ipynb ├── car_review_memory_nn.ipynb ├── car_review_process_data.ipynb ├── car_review_td_lstm.ipynb ├── data │ └── README.md └── yuml │ └── datasets │ └── gridsum2016.py ├── README.md ├── SentimentAnalyze ├── data │ └── README.md ├── douban_cnn.ipynb └── douban_lstm.ipynb ├── WordEmbedding ├── WordEmbedding.ipynb ├── data │ ├── README.md │ └── news_tensite_xml.smarty.zip ├── datasets.py └── tools │ ├── GloVe.sh │ └── fastText.sh ├── keras_extra ├── README.md └── keras_extra.py └── others └── banner.jpg /AspectSentimentAnalyze/.ipynb_checkpoints/car_review_memory_nn-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/.ipynb_checkpoints/car_review_memory_nn-checkpoint.ipynb -------------------------------------------------------------------------------- /AspectSentimentAnalyze/.ipynb_checkpoints/car_review_tc_lstm-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/.ipynb_checkpoints/car_review_tc_lstm-checkpoint.ipynb -------------------------------------------------------------------------------- /AspectSentimentAnalyze/car_review_memory_nn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/car_review_memory_nn.ipynb -------------------------------------------------------------------------------- /AspectSentimentAnalyze/car_review_process_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/car_review_process_data.ipynb -------------------------------------------------------------------------------- /AspectSentimentAnalyze/car_review_td_lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/car_review_td_lstm.ipynb -------------------------------------------------------------------------------- /AspectSentimentAnalyze/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/data/README.md -------------------------------------------------------------------------------- /AspectSentimentAnalyze/yuml/datasets/gridsum2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/AspectSentimentAnalyze/yuml/datasets/gridsum2016.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/README.md -------------------------------------------------------------------------------- /SentimentAnalyze/data/README.md: -------------------------------------------------------------------------------- 1 | 下载豆瓣影评语料(DoubanZH.txt),解压后放到本文件夹下 2 | 3 | 链接:http://pan.baidu.com/s/1pK7s0np 密码:vfne -------------------------------------------------------------------------------- /SentimentAnalyze/douban_cnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/SentimentAnalyze/douban_cnn.ipynb -------------------------------------------------------------------------------- /SentimentAnalyze/douban_lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/SentimentAnalyze/douban_lstm.ipynb -------------------------------------------------------------------------------- /WordEmbedding/WordEmbedding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/WordEmbedding/WordEmbedding.ipynb -------------------------------------------------------------------------------- /WordEmbedding/data/README.md: -------------------------------------------------------------------------------- 1 | 下载搜狗实验室全网新闻数据(SogouCA),解压后放到本文件夹下 2 | 下载地址:http://www.sogou.com/labs/resource/ca.php -------------------------------------------------------------------------------- /WordEmbedding/data/news_tensite_xml.smarty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/WordEmbedding/data/news_tensite_xml.smarty.zip -------------------------------------------------------------------------------- /WordEmbedding/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/WordEmbedding/datasets.py -------------------------------------------------------------------------------- /WordEmbedding/tools/GloVe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/WordEmbedding/tools/GloVe.sh -------------------------------------------------------------------------------- /WordEmbedding/tools/fastText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/WordEmbedding/tools/fastText.sh -------------------------------------------------------------------------------- /keras_extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/keras_extra/README.md -------------------------------------------------------------------------------- /keras_extra/keras_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/keras_extra/keras_extra.py -------------------------------------------------------------------------------- /others/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyumeng/DeepLearningPractice2017/HEAD/others/banner.jpg --------------------------------------------------------------------------------