CoreNLP icon indicating copy to clipboard operation
CoreNLP copied to clipboard

Question/Feature :: NER tag overwriting if its identified as other from one classifier but however identified correctly with next classifier, Is it possible with stanford core nlp???

Open BVSREDDY82 opened this issue 5 years ago • 1 comments

I have a token which is recognized as others in some classifiers however the same token is identified as Person or Organization. In such a case the entity need to be identified whenever the first classifier detected as other.

example models used are ner.model = edu/stanford/nlp/models/ner/english.all.3class.distsim.crf.ser.gz,edu/stanford/nlp/models/ner/english.conll.4class.caseless.distsim.crf.ser.gz

Any Rule to be defined to overwrite the condition

BVSREDDY82 avatar Jan 09 '20 07:01 BVSREDDY82

In general it will overwrite O, but not other labels. After all, there's no easy way to distinguish the earlier or later model

AngledLuffa avatar Jul 08 '22 06:07 AngledLuffa