All Projects → zhixiaochuan12 → ChineseNounPhraseExtraction

zhixiaochuan12 / ChineseNounPhraseExtraction

Licence: other
使用词性模板抽取中文语料中的名词短语

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to ChineseNounPhraseExtraction

Chinese Xinhua
📙 中华新华字典数据库。包括歇后语,成语,词语,汉字。
Stars: ✭ 8,705 (+48261.11%)
Mutual labels:  chinese-nlp
Segmentit
任何 JS 环境可用的中文分词包,fork from leizongmin/node-segment
Stars: ✭ 139 (+672.22%)
Mutual labels:  chinese-nlp
Lac
百度NLP:分词,词性标注,命名实体识别,词重要性
Stars: ✭ 2,792 (+15411.11%)
Mutual labels:  chinese-nlp
Chinesenlp
Datasets, SOTA results of every fields of Chinese NLP
Stars: ✭ 1,206 (+6600%)
Mutual labels:  chinese-nlp
Chinese Chatbot
中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。
Stars: ✭ 124 (+588.89%)
Mutual labels:  chinese-nlp
G2pc
g2pC: A Context-aware Grapheme-to-Phoneme Conversion module for Chinese
Stars: ✭ 155 (+761.11%)
Mutual labels:  chinese-nlp
Awesome Chinese Nlp
A curated list of resources for Chinese NLP 中文自然语言处理相关资料
Stars: ✭ 6,599 (+36561.11%)
Mutual labels:  chinese-nlp
esapp
An unsupervised Chinese word segmentation tool.
Stars: ✭ 13 (-27.78%)
Mutual labels:  chinese-nlp
Gossiping Chinese Corpus
PTT 八卦版問答中文語料
Stars: ✭ 137 (+661.11%)
Mutual labels:  chinese-nlp
Weatherbot
一个基于 Rasa 的中文天气情况问询机器人(chatbot), 带 Web UI 界面
Stars: ✭ 186 (+933.33%)
Mutual labels:  chinese-nlp
Zhopenie
Chinese Open Information Extraction (Tree-based Triple Relation Extraction Module)
Stars: ✭ 98 (+444.44%)
Mutual labels:  chinese-nlp
Thulac Python
An Efficient Lexical Analyzer for Chinese
Stars: ✭ 1,619 (+8894.44%)
Mutual labels:  chinese-nlp
Fastnlp
fastNLP: A Modularized and Extensible NLP Framework. Currently still in incubation.
Stars: ✭ 2,441 (+13461.11%)
Mutual labels:  chinese-nlp
Chinese semantic role labeling
基于 Bi-LSTM 和 CRF 的中文语义角色标注
Stars: ✭ 60 (+233.33%)
Mutual labels:  chinese-nlp
Nlp4han
中文自然语言处理工具集【断句/分词/词性标注/组块/句法分析/语义分析/NER/N元语法/HMM/代词消解/情感分析/拼写检查】
Stars: ✭ 206 (+1044.44%)
Mutual labels:  chinese-nlp
Cnn Question Classification Keras
Chinese Question Classifier (Keras Implementation) on BQuLD
Stars: ✭ 28 (+55.56%)
Mutual labels:  chinese-nlp
Information Extraction Chinese
Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取
Stars: ✭ 1,888 (+10388.89%)
Mutual labels:  chinese-nlp
Fengshenbang-LM
Fengshenbang-LM(封神榜大模型)是IDEA研究院认知计算与自然语言研究中心主导的大模型开源体系,成为中文AIGC和认知智能的基础设施。
Stars: ✭ 1,813 (+9972.22%)
Mutual labels:  chinese-nlp
Fancy Nlp
NLP for human. A fast and easy-to-use natural language processing (NLP) toolkit, satisfying your imagination about NLP.
Stars: ✭ 233 (+1194.44%)
Mutual labels:  chinese-nlp
Thuctc
An Efficient Chinese Text Classifier
Stars: ✭ 179 (+894.44%)
Mutual labels:  chinese-nlp

Chinese noun phrase extraction

code modified from phrasemachine project

method referred from Justeston and Katz (1995)

key idea: extract noun phrases by pattern ((A|N)+|(A|N)*(NP)?(A|N)*)N

phrasemachine only supports English, this project can extract Chinese noun phrases by jieba.

Example

Input(Chinese string)

"中华人民共和国位于亚洲东部,太平洋西岸,是工人阶级领导的、以工农联盟为基础的人民民主专政的社会主义国家。"

Output(index of extracted noun phrases)

[(0, 1), (2, 3), (5, 6), (9, 10), (9, 11), (10, 11), (16, 17), (18, 19), (18, 20), (19, 20), (21, 22), (21, 23), (22, 23)]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].