在nltk python中敲一个特定的单词

时间:2018-01-10 10:46:47

标签: python-3.x nltk chunking

观察简短的例子:

例如:

tagged = [('The', 'DT'), ('cat', 'NN'), ('sat', 'VBD'), ('on', 'IN'), ('the','DT'), ('mat','NN'), ('the', 'DT'), ('dog', 'NN'), ('chewed', 'VBD')]

gram = r"""chk: {<DT>?<NN><VBD>}"""

我会得到:

the cat sat 

the dog chewed

但是,如果我正在寻找有关像猫这样的特定单词的信息。 是否有一种方法可以特定地将cat这个词用于标记 就像波纹管一样?

r"""chk: {<DT>?<cat><VBD>}"""

0 个答案:

没有答案