CLJun 1, 2021

Discontinuous Named Entity Recognition as Maximal Clique Discovery

arXiv:2106.00218v2712 citations
Originality Highly original
AI Analysis

This addresses a specific challenge in natural language processing for tasks requiring accurate identification of discontinuous entities, representing a strong incremental advance.

The paper tackles the problem of discontinuous named entity recognition by reformulating it as maximal clique discovery in a segment graph, eliminating exposure bias from sequential methods. It achieves up to 3.5 percentage points improvement in F1 score and a 5x speedup over state-of-the-art models on three benchmarks.

Named entity recognition (NER) remains challenging when entity mentions can be discontinuous. Existing methods break the recognition process into several sequential steps. In training, they predict conditioned on the golden intermediate results, while at inference relying on the model output of the previous steps, which introduces exposure bias. To solve this problem, we first construct a segment graph for each sentence, in which each node denotes a segment (a continuous entity on its own, or a part of discontinuous entities), and an edge links two nodes that belong to the same entity. The nodes and edges can be generated respectively in one stage with a grid tagging scheme and learned jointly using a novel architecture named Mac. Then discontinuous NER can be reformulated as a non-parametric process of discovering maximal cliques in the graph and concatenating the spans in each clique. Experiments on three benchmarks show that our method outperforms the state-of-the-art (SOTA) results, with up to 3.5 percentage points improvement on F1, and achieves 5x speedup over the SOTA model.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes