Open Tooa opened 8 years ago
Thank you for identifying these error cases, we will dig into them further. I am actually working on a new POS tagger and NER tagger for the toolkit, so hopefully issues like these will be resolved!
Are you planning to release the new tagger soon? Here's BTW another challenging sentence:
She sent him a present.
The current POS-tagger classifies the token present
as an adjective, while it's actually a noun in this context. Maybe your new implementation is also able to resolve this instance.
Hi :wave: ,
please take a look at the examples provided below. The examples were processed with corenlp.run.
The POS-tagger and the Coref-annotator (mention detection) often fail for extraordinary names. Especially, the POS-tagger often fails in recognizing names as nouns - even if the sentence starts with a name.
I wonder, if this is related to the universal postags. It's maybe harder to assign the correct label for a smaller tag set. I haven't seen such pos-tagging errors with more fine grained tag sets in the past.
Sue
is classified asVB
and not recognized as mention. ThereforeSue
andShe
are not mapped to the same coreference chain.Lira
is correctly classified asNN
, but not identified as mention.Coy
is classified asJJ
and therefore also not identified as mention.Sunny
is classified asJJ
again and not identified as mention.