python Stanford Parser Parse Sentence

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Stanford Parser Parse Sentence相关的知识,希望对你有一定的参考价值。

from nltk import tokenize, tree, parse, tag
from nltk.parse import stanford, corenlp

target = 'sample target'
tokens = tokenize.word_tokenize(target)
tagged = tag.pos_tag(tokens)
tagged

parser = stanford.StanfordParser()
tree = list(parser.tagged_parse(tagged))[0]
tree.pretty_print()

以上是关于python Stanford Parser Parse Sentence的主要内容,如果未能解决你的问题,请参考以下文章

斯坦福 stanford coreNLP 中的PCFG parser-lexparser

如何使用 Genia Corpus 训练 Stanford Parser?

我如何获得依赖解析输出的更多信息?

带有 NLTK 的斯坦福依赖解析器:UnicodeDecodeError:

stanford NLP、哈工大云平台NLTP、百度NLPC

python 配置nlp stanford python