EventTriplesExtraction
项目地址:https://github.com/liuhuanyong/EventTriplesExtraction
EventTriplesExtraction based on dependency parser and semantic role labeling, 基于依存句法与语义角色标注的事件三元组抽取
文本表示一直是个重要问题,如何以清晰,简介的方式对一个文本信息进行有效表示是个长远的任务
我尝试过使用关键词,实体之间的关联关系,并使用textgrapher的方式进行展示,但以词作为文本信息单元表示这种效果不是特别好,所以,本项目想尝试从事件三元组的方式出发,对文本进行表示.
使用方式
from triples_extraction import *extractor = TripleExtractor()svos = extractor.triples_main(content)print('svos', svos)
测试样例
content = '爸爸今天来我家了,我感到非常荣幸'svos = [['爸爸', '来', '我家'],['我', '感到', '荣幸']]
If any question about the project or me ,see https://liuhuanyong.github.io/
项目地址:https://github.com/liuhuanyong/EventTriplesExtraction