图中的方法表示什么? Python编程

时间:2017-08-07 06:11:24

标签: python stanford-nlp

我正在尝试实现如下图所示的过程进行文本摘要:
Concept image.

据我所知,第二步是使用Stanford Parser生成依赖图。这是代码:

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())

但我无法得到的部分是第三和第四部分。请帮助我理解它。如果可能的话,第三和第四的可能实施是什么。请帮助我。

0 个答案:

没有答案