polyglot icon indicating copy to clipboard operation
polyglot copied to clipboard

PoS tagger on possessive marker not handled well

Open devikasondhi opened this issue 7 years ago • 0 comments

Hello, The PoS tagger does not seem to take into account the presence of possesive ending ('s)

blob = "John's big idea isn't all that bad." text = Text(blob) text.pos_tags [(u"John's", u'NUM'), (u'big', u'ADJ'), (u'idea', u'NOUN'), (u"isn't", u'CONJ'), (u'all', u'DET'), (u'that', u'DET'), (u'bad', u'ADJ'), (u'.', u'PUNCT')] John is a Proper Noun and "'s" is a possesive marker that should have been marked accordingly.

devikasondhi avatar Dec 30 '18 15:12 devikasondhi