Named Entity Recognition via Machine Reading Comprehension: A Multi-Task Learning Approach

Yibo Wang,Wenting Zhao,Yao Wan,Zhongfen Deng,Philip S. Yu
2023-09-20
Abstract:Named Entity Recognition (NER) aims to extract and classify entity mentions in the text into pre-defined types (e.g., organization or person name). Recently, many works have been proposed to shape the NER as a machine reading comprehension problem (also termed MRC-based NER), in which entity recognition is achieved by answering the formulated questions related to pre-defined entity types through MRC, based on the contexts. However, these works ignore the label dependencies among entity types, which are critical for precisely recognizing named entities. In this paper, we propose to incorporate the label dependencies among entity types into a multi-task learning framework for better MRC-based NER. We decompose MRC-based NER into multiple tasks and use a self-attention module to capture label dependencies. Comprehensive experiments on both nested NER and flat NER datasets are conducted to validate the effectiveness of the proposed Multi-NER. Experimental results show that Multi-NER can achieve better performance on all datasets.
Computation and Language
What problem does this paper attempt to address?
The paper aims to address the issue of multi-label dependencies in Named Entity Recognition (NER). Specifically, existing Machine Reading Comprehension (MRC)-based NER methods ignore the label dependencies between different entity types, which is a critical issue for accurately recognizing named entities. To solve this problem, the authors propose a new multi-task learning framework (referred to as Multi-NER), which decomposes MRC-based NER into multiple tasks and utilizes a self-attention mechanism to capture the label dependencies between different entity types. Experimental results show that Multi-NER achieves better performance on both nested NER and flat NER datasets. Additionally, by visualizing the self-attention maps, it is verified that the self-attention module can successfully capture the label dependencies between entities.