如何获得普遍依赖?

时间:2017-08-11 07:41:20

标签: parsing stanford-nlp

stanfordnlp / CoreNLP如何获得通用依赖项,而不是像命令行在线演示一样增强?

在“stanford-parser-full-2016-10-31”中,我尝试命令行:

java -mx1000m -cp "$scriptdir/:" edu.stanford.nlp.parser.lexparser.LexicalizedParser -sentences newline -outputFormat "typedDependencies" -originalDependencies edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz $

获得普遍依赖,增强;但我不知道如何在命令行上获得NOT增强的通用依赖。有谁可以帮助我?

1 个答案:

答案 0 :(得分:0)

您应该获得完整的Stanford CoreNLP软件包的最新版本。

可以在这里找到:

https://stanfordnlp.github.io/CoreNLP/download.html

这是一个示例命令,它将生成json,每个句子都有几个版本的依赖项。

java -Xmx8g edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse -file example-sentence.txt -outputFormat json