NLTK中动词的标记错误

时间:2013-10-18 14:35:52

标签: python nlp nltk

我使用带有树库语料库的标签器来使用NLTK对一个句子进行POS标记。句子是“猫吃了狗”。出于某种原因,它将“ate”标记为NN,而它应该是动词。有线索吗?

from nltk.tag import pos_tag  
from nltk.tokenize import word_tokenize 
pos_tag(word_tokenize("The cat ate the dog"))

[OUT]:     [('The', 'DT'), ('cat', 'NN'), ('ate', 'NN'), ('the', 'DT'), ('dog', 'NN')]

0 个答案:

没有答案