duee-gplinker / README.md
xusenlin's picture
Update README.md
1cc79ed
|
raw
history blame
773 Bytes
metadata
language:
  - zh
tags:
  - relation extraction
license: apache-2.0
datasets:
  - DuIE
metrics:
  - micro f1

GPLinker关系抽取模型

模型介绍

使用方法

pip install litie
from pprint import pprint
from litie.pipelines import EventExtractionPipeline

pipeline = EventExtractionPipeline("gplinker", model_name_or_path="xusenlin/duee-gplinker", model_type="bert")
text = "油服巨头哈里伯顿裁员650人 因美国油气开采活动放缓。"
pprint(pipeline(text))

# 输出

模型训练和推理的详细代码见 litie