运行 DeepPavlov 命名实体识别

Runnig DeepPavlov Named Entity Recognition

我如何 运行 来自 DeepPavlov 的 NER?

我有一个包含句子 "sentences.txt" 的输入文件,需要将结果放入 "result.txt"。

使用 DeepPavlov 进行命名实体识别有多种选择

Pythonic 方式

from deeppavlov import configs, build_model

ner_model = build_model(configs.ner.ner_ontonotes, download=True)
ner_model(['Computer Sciences Corp. is close to making final an agreement to buy Cleveland Consulting Associates'])

从命令行

python deeppavlov/deep.py interact ner_ontonotes [-d]