解释斯坦福CoreNLP的Coreference Resolution的输出

时间:2017-10-05 05:58:53

标签: java nlp stanford-nlp

是否有任何API或方法以文本而不是xml的形式获得 Stanford CoreNLP的Coreference Resolution输出,以便可以轻松解释?

1 个答案:

答案 0 :(得分:3)

以下是一个示例命令:

java -Xmx8g edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse,mention,coref -coref.algorithm neural -file example.txt -outputFormat text

底部会有一个人类可读的输出,显示文档的coref信息。