我使用Stanford CoreNLP v 3.5.2来获得神经网络依赖性解析。
问题是我不需要通用依赖项我需要原始依赖项。
属性文件可以有 parse.originalDependencies 属性,但有两个问题
NN DepParsing是 depparse 选项, depparse 的属性未在http://nlp.stanford.edu/software/corenlp.shtml
中描述我不确定 depparse.originalDependencies 是否存在。
此外,我应该如何在属性文件
中定义它depparse.originalDependencies = 1
or
depparse.originalDependencies = true
谢谢
答案 0 :(得分:1)
您需要使用CoreNLP调用中的-depparse.model
选项指定其他解析模型。 (请注意,如果您通过edu.stanford.nlp.parser.nndep.DependencyParser
类直接访问解析器,则此选项仅称为-model
。)
使用以下-depparse.model
选项。这是指与解析器一起分发的非通用依赖关系模型。
-depparse.model "edu/stanford/nlp/models/parser/nndep/english_SD.gz"