CLAug 9, 2022

An Embarrassingly Easy but Strong Baseline for Nested Named Entity Recognition

arXiv:2208.04534v3225 citationsh-index: 66
AI Analysis

This work addresses nested NER, a specific NLP task, with an incremental improvement that enhances performance and reproducibility.

The paper tackled nested named entity recognition by using a convolutional neural network to model spatial relations in the score matrix, achieving state-of-the-art results on three datasets and releasing a pre-processing script to standardize comparisons.

Named entity recognition (NER) is the task to detect and classify the entity spans in the text. When entity spans overlap between each other, this problem is named as nested NER. Span-based methods have been widely used to tackle the nested NER. Most of these methods will get a score $n \times n$ matrix, where $n$ means the length of sentence, and each entry corresponds to a span. However, previous work ignores spatial relations in the score matrix. In this paper, we propose using Convolutional Neural Network (CNN) to model these spatial relations in the score matrix. Despite being simple, experiments in three commonly used nested NER datasets show that our model surpasses several recently proposed methods with the same pre-trained encoders. Further analysis shows that using CNN can help the model find more nested entities. Besides, we found that different papers used different sentence tokenizations for the three nested NER datasets, which will influence the comparison. Thus, we release a pre-processing script to facilitate future comparison.

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