我如何获得依赖解析输出的更多信息?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何获得依赖解析输出的更多信息?相关的知识,希望对你有一定的参考价值。
我使用Stanford Dependency Parser和NLTK解析句子“我在睡觉时拍了一头大象”这是我的代码:
from nltk.parse.stanford import StanfordDependencyParser
path_to_jar = 'path_to/stanford-parser-full-2014-08-27/stanford-parser.jar'
path_to_models_jar = 'path_to/stanford-parser-full-2014-08-27/stanford-
parser-3.4.1-models.jar'
dependency_parser = StanfordDependencyParser(path_to_jar=path_to_jar,
path_to_models_jar=path_to_models_jar)
result = dependency_parser.raw_parse('I shot an elephant in my sleep')
dep = result.next()
list(dep.triples())
输出:
[((u'shot', u'VBD'), u'nsubj', (u'I', u'PRP')),
((u'shot', u'VBD'), u'dobj', (u'elephant', u'NN')),
((u'elephant', u'NN'), u'det', (u'an', u'DT')),
((u'shot', u'VBD'), u'prep', (u'in', u'IN')),
((u'in', u'IN'), u'pobj', (u'sleep', u'NN')),
((u'sleep', u'NN'), u'poss', (u'my', u'PRP$'))]
但输出没有句子中的单词索引:ex我希望它应该返回如下内容:
nsubj(shot-2, I-1)
det(elephant-4, an-3)
dobj(shot-2, elephant-4)
prep(shot-2, in-5)
poss(sleep-7, my-6)
pobj(in-5, sleep-7)
射击指数是2或句子中的大象是4。谢谢..
答案
这可能会得到你想要的:
from stanfordcorenlp import StanfordCoreNLP
nlp = StanfordCoreNLP(r'/path/to/stanford-corenlp-full-2018-02-27')
# can be download at https://stanfordnlp.github.io/CoreNLP/#download
sent = 'For six years, T. Marshall Hahn Jr. has made corporate acquisitions in the George Bush mode: kind and gentle.'
print('Dependency Parsing:', nlp.dependency_parse(sentence))
nlp.close()
此代码改编自https://blog.csdn.net/qq_35203425/article/details/80451243
以上是关于我如何获得依赖解析输出的更多信息?的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Parse.com 获取更多对象以获得无尽的 ListView
我如何获得sbt来解决我的双层托盘依赖关系(sbt 1.3.5)?
是否可以让 gradle 解析像 '5.0.+' 这样的 ivy 依赖项以获得像 '5.0.0.1.12.24' 这样的版本?