Samiksha Jaiswal (Editor)

Entity linking

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In natural language processing, entity linking, named entity linking (NEL), named entity disambiguation (NED), named entity recognition and disambiguation (NERD) or named entity normalization (NEN) is the task of determining the identity of entities mentioned in text. For example, given the sentence "Paris is the capital of France", the idea is to determine that "Paris" refers to the city of Paris and not to Paris Hilton or any other entity that could be referred as "Paris". NED is different from named entity recognition (NER) in that NER identifies the occurrence or mention of a named entity in text but it does not identify which specific entity it is.

Entity linking requires a knowledge base containing the entities to which entity mentions can be linked. A popular choice for entity linking on open domain text are knowledge-bases based on Wikipedia, in which each page is regarded as a named entity. NED using Wikipedia entities has been also called wikification (see Wikify! an early entity linking system ). A knowledge base may also be induced automatically from training text or manually built.

Named entity mentions can be highly ambiguous, any entity linking method must address this inherent ambiguity. Various approaches to tackle this problem have been tried to date. In the seminal approach of Milne and Witten, supervised learning is employed using the anchor texts of Wikipedia entities as training data. Kulkarni et al. exploited the common property that topically coherent documents refer to entities belonging to strongly related types. Other approaches also collected training data based on unambiguous synonyms. More recent systems for NED include AIDA, AGDISTIS, Babelfy and TagMe.

Entity linking has been used to improve the performance of information retrieval systems and to improve search performance on digital libraries. NED is also a key input for Semantic Search. For example, entity linking has been successfully used to validate the output of Named-entity recognition methods by using an underlying assumption that every text has a specific scope and context, and therefore entities mentioned in that text should have a semantic relationship between them. Semantic similarity measures can then be used to filter out errors by identifying entities out of context, even when multiple interpretations are possible for the same entity.

Entity Linking evaluation campaigns are organized by the U.S. National Institute of Standards and Technology (NIST) in the context of the Knowledge Base Population task of the Text Analysis Conference.

References

Entity linking Wikipedia