CLLGJun 30, 2019

Merge and Label: A novel neural network architecture for nested NER

arXiv:1907.00464v11104 citations
Originality Incremental advance
AI Analysis

This addresses the problem of handling nested structures in NER for NLP applications, representing an incremental advance with specific performance gains.

The paper tackles nested named entity recognition by introducing a neural network architecture that merges tokens and entities into nested structures and labels them independently, achieving state-of-the-art F1 scores of 74.6 on the ACE 2005 Corpus and 82.4 with BERT embeddings, an 8-point improvement over previous methods.

Named entity recognition (NER) is one of the best studied tasks in natural language processing. However, most approaches are not capable of handling nested structures which are common in many applications. In this paper we introduce a novel neural network architecture that first merges tokens and/or entities into entities forming nested structures, and then labels each of them independently. Unlike previous work, our merge and label approach predicts real-valued instead of discrete segmentation structures, which allow it to combine word and nested entity embeddings while maintaining differentiability. %which smoothly groups entities into single vectors across multiple levels. We evaluate our approach using the ACE 2005 Corpus, where it achieves state-of-the-art F1 of 74.6, further improved with contextual embeddings (BERT) to 82.4, an overall improvement of close to 8 F1 points over previous approaches trained on the same data. Additionally we compare it against BiLSTM-CRFs, the dominant approach for flat NER structures, demonstrating that its ability to predict nested structures does not impact performance in simpler cases.

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