CoreNLP Coreference in CoNLL output

q0qdq0h2  于 2个月前  发布在  其他
关注(0)|答案(1)|浏览(40)

我正在尝试在纯文本文件上运行dcoref系统,并希望得到CoNLL 2012格式的输出。
我已经尝试了几种方法:

$ ./corenlp.sh -annotators tokenize,ssplit,pos,lemma,ner,parse,dcoref \
    -file /tmp/example.txt \
    -coref.conllOutputPath /tmp/example.conll

然而,这个选项被忽略了,我得到了XML输出。

$ ./corenlp.sh -annotators tokenize,ssplit,pos,lemma,ner,parse,dcoref \
    -file /tmp/example.txt -outputFormat conll \
    -output.columns doctitle,section,idx,word,lemma,pos,ner,headidx,deprel,link

这个选项被尊重了,但是“link”没有给出共指信息,我不知道我应该使用哪个其他列。
关于在CoNLL 2011数据上运行系统并对其进行评估的说明是有的,但对于这个用例,我没有注解过的数据。

相关问题