文件名称:jiagu:jiagu深度学习自然语言处理工具知识图谱关系抽取中文分词词性标注命名实体识别情感分析新词发现
文件大小:56.32MB
文件格式:ZIP
更新时间:2024-02-24 09:00:09
nlp pos ner cws chinese-word-segmentation
Jiagu自然语言处理工具 将提供中文分词,词性标注,命名实体识别,情感分析,知识图谱关系转移,关键字检索,文本摘要,新词发现,情感分析,文本聚类等常用自然语言处理功能。参考了各大工具优缺点制作,将Jiagu回馈给大家。 目录 提供的功能有: 中文分词 词性标注 命名实体识别 知识图谱关系抽取 关键词提取 文字摘要 新词发现 情感分析 文本聚类 等等。。。。 安装方式 点安装 pip install -U jiagu 如果比较慢,可以使用清华的pip源: pip install -U jiagu -i https://pypi.tuna.tsinghua.edu.cn/simple 原始安装 git clone https://github.com/ownthink/Jiagu cd Jiagu python3 setup.py install 使用方式 快速上手:分词,词性标注,命名实体识别 import jiagu #jiagu.init() # 可手动初始化,也可以动态初始化 text = '厦门明天会不会下雨' words = jiagu . seg ( text ) # 分词
【文件预览】:
Jiagu-master
----setup.py(572B)
----.gitignore(1KB)
----jiagu()
--------textrank.py(6KB)
--------sentiment()
--------perceptron.py(7KB)
--------mmseg.py(4KB)
--------normal()
--------data()
--------model()
--------__init__.py(626B)
--------cluster()
--------analyze.py(4KB)
--------utils.py(6KB)
--------topic()
--------segment()
--------findword.py(4KB)
--------__main__.py(44B)
----README.md(7KB)
----license(1KB)
----train()
--------perceptron.py(7KB)
--------data()
--------model()
--------README.md(148B)
----demo.py(3KB)
----test()
--------test_textrank.py(12KB)
--------test_findword.py(662B)
--------test_cluster.py(3KB)
--------test_pos.py(154B)