TLDR: A research paper explores why adding new PII entities to Named Entity Recognition (NER) models doesn’t always cause “catastrophic forgetting” of existing entities. It finds that semantic entities (like persons) and pattern-based PII (like phone numbers) are learned through largely independent mechanisms. However, location entities are vulnerable due to feature overlap with PII. Crucially, the study reveals that allowing the “O” (non-entity) tag classifier to adapt is vital for the model to learn new PII, resolving a “reverse O-tag drift” where PII patterns were initially misclassified as non-entities.
Named Entity Recognition (NER) systems are crucial for identifying and protecting sensitive information like Personally Identifiable Information (PII) in human language, especially in noisy data from sources like Automatic Speech Recognition (ASR). While powerful pre-trained language models like BERT excel on standard NER tasks, real-world applications often demand specialized fine-tuning to detect new, domain-specific entity types such as email addresses or phone numbers.
Traditionally, extending AI models with new categories often leads to a problem called ‘catastrophic forgetting,’ where the model loses its ability to recognize previously learned entities. This happens because the model adjusts its internal feature space to accommodate new concepts, potentially disrupting the boundaries for older ones.
However, a recent study uncovered a surprising finding: when a pre-trained BERT model was fine-tuned to recognize both standard entities (like persons, locations, and organizations) and new spoken-format PII entities, its performance on the original categories remained stable with minimal degradation. This unexpected ‘peaceful coexistence’ prompted researchers to investigate why adding new PII entities didn’t significantly impact existing entity recognition.
The researchers hypothesized that this stability stems from fundamental differences in how various entity types are learned. They proposed that standard entities like ‘Person’ and ‘Organization’ are identified through semantic and contextual cues, while PII entities are recognized primarily through lexical and morphological patterns. These distinct feature types might occupy largely independent learning mechanisms within the model, thereby minimizing interference.
To explore this hypothesis, an incremental learning setup was used as a diagnostic tool. By simulating the sequential introduction of new entities, the researchers could amplify subtle points of friction and competition between entity representations. This diagnostic approach led to two key discoveries.
Representation Overlap as a Vulnerability
Under the pressure of incremental learning, the ‘Location’ (LOC) entity consistently emerged as the most vulnerable among the original classes. This vulnerability is likely due to a feature overlap. Unlike ‘Person’ and ‘Organization’ which are primarily semantic, ‘Location’ entities in spoken language data often include structured, pattern-like elements such as street numbers or postal codes. These characteristics resemble the morphological nature of PII like phone numbers or IBANs. When the model updates its understanding of these patterns during incremental learning, it inadvertently causes ‘collateral damage’ to the ‘Location’ class, which partially relies on these same underlying features.
Also Read:
- Unveiling Hidden Data: How Alignment Information Leaks from Open Language Models
- Unmasking Privacy Risks: Membership Inference in Clinical AI Models
Reverse O-tag Representation Drift
The study also uncovered a crucial and counter-intuitive role for the ‘O’ tag, which represents non-entities. The initial training phase created a strong bias, teaching the model to classify PII-like patterns as ‘O’. This made the model resistant to learning new PII entities. Experiments showed that if all old classifier heads, including the ‘O’ tag, were frozen, the model completely failed to learn the new entities. However, by selectively unfreezing only the ‘O’ tag’s classifier, the model successfully began to learn the new PII types. This ‘reverse drift’ indicates that the background class representation needs to adapt by ‘releasing’ previously absorbed entity patterns, fundamentally altering the learned distinction between entities and non-entities.
These findings provide valuable diagnostic insights into how NER models handle capability expansion, revealing the underlying mechanisms that enable or hinder the learning of new entity types. The research, detailed in the paper Diagnosing Representation Dynamics in NER Model Extension, contributes to a scientific inquiry into the internal dynamics of NER models when faced with evolving requirements, rather than proposing a new state-of-the-art algorithm.
The study highlights that while feature independence can lead to a ‘peaceful coexistence’ between different entity types, understanding representation overlap and the adaptability of the background ‘O’ class are critical for successful model extension. Future work could explore these dynamics across diverse datasets and entity configurations, and develop algorithms that explicitly model the bidirectional relationship between background class adaptation and entity recognition.


