Detect different references of same entities as one #10585
-
Hello!I have built a custom NER using spacy to detect custom entities. It detects all the entities as required. There are certain scenarios of different ways the same entity is referenced. Scenario 1: Company name and its abbreviations Eg: While I understand that the NER component as a whole only recognizes the entities, whether they are same or not is something that has to be handled post processing, I was thinking whether using an Entity ruler will be helpful here?What other approach can I use apart from maintaining a local dictionary with all possible references and checking via code?While the latter seems easier to implement, it seems time consuming to run everytime you pass a doc to detect entities. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Hello, |
Beta Was this translation helpful? Give feedback.
Hello,
I think
EntityLinking
would be helpful for your usecase (https://spacy.io/api/entitylinker) it connects found entities to unique identifiers.