yohasebe / engtagger

English Part-of-Speech Tagger Library; a Ruby port of Lingua::EN::Tagger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postpositive adjectives aren't handled correctly

grv87 opened this issue · comments

Postpositive adjectives aren't handled correctly:

puts tgr.add_tags("She stands with her arms akimbo.")
   <prp>She</prp> <vbz>stands</vbz> <in>with</in> <prps>her</prps> <nns>arms</nns> <nn>akimbo</nn> <pp>.</pp>

akimbo should be tagged as adjective (maybe with some special tag for postpositive), but it is tagged as noun.

Thanks for the report. As engtagger is statistically based, it often gives wrong tags to words that are not frequent and it would be difficult to deal with individual cases. Sorry about that...