Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.35 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.35 KB

DeepNaturallanguageprocessing

深度自然语言处理 这是一个python程序。

使用深度学习建立语言模型,其中包括文本生成,翻译等

使用深度学习模型建立文本生成,模仿安娜卡列琳娜这篇文章风格写文章。

TextClassification

文本分类(text_classification)

1、Embedding-> LSTM(GRU)—dropout—LSTM(GRU)—dropout—全连接层—输出层

2、Embedding—> bi-directional lstm(GRU)—> concat output—> average/last output -> softmax layer

文本情感分析(sentiment_analysis)

主要是结合embedding word进行文本的情感分析。

Segmentation

ChineseSegmentation

中文分词 基于序列标注的思想,使用bidirectional_RNN来建模。

NER

命名实体识别