TextGrapher/README.md

32 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2018-07-25 15:44:56 +08:00
# TextGrapher
2018-07-25 15:57:15 +08:00
Text Content Grapher based on keyinfo extraction by NLP method。输入一篇文档将文档进行关键信息提取进行结构化并最终组织成图谱组织形式形成对文章语义信息的图谱化展示。
2018-07-25 15:44:56 +08:00
# 项目介绍
2018-07-25 15:54:38 +08:00
如何用图谱和结构化的方式,即以简洁的方式对输入的文本内容进行最佳的语义表示是个难题。 本项目将对这一问题进行尝试,采用的方法为:输入一篇文档,将文档进行关键信息提取,并进行结构化,并最终组织成图谱组织形式,形成对文章语义信息的图谱化展示。  
# 使用方式
from text_grapher import *
content = '你要分析的文本'
handler = CrimeMining()
handler.main(content)
结果保存在graph.html文件当中。  
# 事件举例
2018-07-25 15:44:56 +08:00
) 中兴事件 
![image](https://github.com/liuhuanyong/TextGrapher/blob/master/image/%E4%B8%AD%E5%85%B4%E4%BA%8B%E4%BB%B6.png)
2) 魏则西事件 
![image](https://github.com/liuhuanyong/TextGrapher/blob/master/image/%E9%AD%8F%E5%88%99%E8%A5%BF%E4%BA%8B%E4%BB%B6.png)
3) 雷洋事件 
![image](https://github.com/liuhuanyong/TextGrapher/blob/master/image/%E9%9B%B7%E6%B4%8B%E5%AB%96%E5%A8%BC%E4%BA%8B%E4%BB%B6.png)
4) 同学杀人事件 
![image](https://github.com/liuhuanyong/TextGrapher/blob/master/image/%E5%90%8C%E5%AD%A6%E6%9D%80%E4%BA%BA%E4%BA%8B%E4%BB%B6.png)
2018-07-25 15:54:38 +08:00
# 总结
2018-07-25 15:55:23 +08:00
1)如何用图谱和结构化的方式,即以简洁的方式对输入的文本内容进行最佳的语义表示是个难题。
2)本项目采用了高频词,关键词,命名实体识别,主谓宾短语识别等抽取方式,并尝试将三类信息进行图谱组织表示,这种表示方式是一种尝试。
2018-07-25 15:56:33 +08:00
命名实体识别以及关键信息抽取受限于NLP的性能在算法和方式上还存在多处不足。
2018-07-25 15:54:38 +08:00
# Question?
send mail to lhy_in_blcu@126.com
2018-10-06 21:29:53 +08:00
If any question about the project or me ,see https://liuhuanyong.github.io/