我使用带有树库语料库的标签器来使用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')]