Amazon AI Researchers Introduces ReFinED: A Novel Entity Linking (EL) System That Improves Entity Linking Between Texts And Knowledge Bases

Artificial Intelligence has shown promising results across numerous areas, revolutionizing our daily lives. Machines can now understand human language thanks to natural language processing (NLP), one of AI’s most promising research domains. It is at the heart of all the technologies we use daily, including search engines, chatbots, spam filters, grammar checkers, voice assistants, and social media monitoring tools.

Entity linking (EL) refers to automatically connecting entities mentioned in the text to their corresponding entries in a knowledge base, such as Wikidata, a collection of facts relating to those entities.

In natural language processing (NLP) applications, including question answering, information extraction, and natural language understanding, entity linking is a typical first step. It’s essential for connecting unstructured text with knowledge bases, allowing access to a wealth of carefully selected material.

Experiments on common datasets show that the current EL systems perform exceptionally well. However, in practical applications, they fall short due to the following reasons: 

  1. They require a lot of computing, which raises the cost of large-scale processing.
  2. It is difficult to simply adapt most EL systems to other knowledge bases because they are built to link to certain knowledge bases (usually Wikipedia). 
  3. The most effective approaches cannot link texts to entities added to the knowledge base after training (a task known as zero-shot EL), necessitating continuous retraining to keep them current.

New work by the Amazon team unveiled a brand-new EL system called ReFinED at the NAACL 2022 industry track that tackles all three problems. Expanding on this work, they also introduce resents a novel approach to adding more knowledge base data to the model and increasing accuracy. ReFinED outperforms state-of-the-art performance on standard EL datasets by an average of 3.7 points in F1 score, a measure that considers both false positives and false negatives.

ReFinED is capable of zero-shot entity linking and generalizing to massive knowledge bases like Wikidata, which has 15 times as many entities as Wikipedia. The system is efficient and effective for extracting entities from web-scale datasets, for which the model has been successfully deployed within Amazon. It combines speed, accuracy, and scale.

ReFinED performs EL using fine-grained entity types and entity descriptions. However, the team applied a straightforward Transformer-based encoder, outperforming state-of-the-art designs in terms of performance on five EL datasets.

ReFinED is 60 times faster than comparable models and, consequently, roughly 60 times more resource-efficient to run than prior work because it performs mention detection, fine-grained entity typing (predicting entity types), and entity disambiguation (scoring entities) for all mentions within a document in a single forward pass.

While working on this method, the researchers encountered a problem that occasionally mentioned candidate entities that could not be distinguished using knowledge base entity descriptions and types.

To overcome this shortcoming, the researchers further conducted their experiments and suggested a method that draws on extra knowledge base information on the candidate entities. In their second paper, “Improving entity disambiguation by reasoning over a knowledge base,” they explain that they have added a second mechanism to the model that enables it to forecast the connections between pairs of mentions in the text to utilize this kind of information.

The team improved the state-of-the-art performance by 12.7 F1 points on the “ShadowLink” dataset, which focuses on very difficult situations. Additionally, the improved the performance by an average of 1.3 F1 points across six regularly used datasets in the literature by including this technique in the model.

This Article is written as a summary article by Marktechpost Staff based on the research paper 'ReFinED: An Efficient Zero-shot-capable Approach to End-to-End Entity Linking'. All Credit For This Research Goes To Researchers on This Project. Checkout the paper, github and reference article.

Please Don't Forget To Join Our ML Subreddit

Credit: Source link

Comments are closed.