I am using nltk.pos_tag
and sometimes I got some weird tags.
For Example
[(u'father', 'NN'), (u'always', 'RB'), (u'interested', 'JJ'), (u'magic', 'NN'),
(u'carnival', 'NN'), (u'tricks', 'NNS'), (u',', ','), (u'wanting', 'VBG'),
(u'see', 'NN'), (u'worked', 'VBD'), (u'.', '.'), (u'one', 'CD'),
(u'things', 'NNS'), (u'knew', 'VBD')]
(u'interested', 'JJ'),(u'see', 'NN')
-these things are really making my analysis waste and faulty. Please help me suggesting any other way of tagging POS-tags.