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的主要内容,如果未能解决你的问题,请参考以下文章