与nltk分块

时间:2013-02-04 17:51:41

标签: python nlp nltk chunking

如何从给定模式的句子中获取所有块。 为例

NP:{<NN><NN>}

句子标记:

[("money", "NN"), ("market", "NN") ("fund", "NN")]

如果我解析我获得

(S (NP money/NN market/NN) fund/NN)

我想还有另一种选择

(S money/NN (NP market/NN fund/NN))

2 个答案:

答案 0 :(得分:6)

@mbatchkarov关于nbest_parse文档是正确的。为了代码示例,请参阅:

import nltk
# Define the cfg grammar.
grammar = nltk.parse_cfg("""
S -> NP
S -> NN NP
S -> NP NN
NP -> NN NN
NN -> 'market'
NN -> 'money'
NN -> 'fund'
""")

# Make your string into a list of tokens.
sentence = "money market fund".split(" ")

# Load the grammar into the ChartParser.
cp = nltk.ChartParser(grammar)

# Generate and print the nbest_parse from the grammar given the sentence tokens.
for tree in cp.nbest_parse(sentence):
    print tree

答案 1 :(得分:1)

我认为你的问题是关于获得n句子最有可能的解析。我对吗?如果是,请参阅 2.0 documentation中的nbest_parse(sent, n=None)功能。