CLAILGMay 7

TIDE: Every Layer Knows the Token Beneath the Context

arXiv:2605.0621694.3
Predicted impact top 15% in CL · last 90 daysOriginality Highly original
AI Analysis

For LLM practitioners, TIDE offers a simple fix to fundamental embedding issues that degrade performance on rare tokens and limit model expressiveness.

TIDE addresses the rare token problem and contextual collapse in LLMs by injecting token identity into every layer via EmbeddingMemory, achieving up to 15% perplexity improvement on rare tokens and 5% on average across language modeling tasks.

We revisit a universally accepted but under-examined design choice in every modern LLM: a token index is looked up once at the input embedding layer and then permanently discarded. This single-injection assumption induces two structural failures: (i) the Rare Token Problem, where a Zipf-type distribution of vocabulary causes rare-token embeddings are chronically under-trained due to receiving a fraction of the cumulative gradient signal compared to common tokens; and (ii) the Contextual Collapse Problem, where limited parameters models map distributionally similar tokens to indistinguishable hidden states. As an attempt to address both, we propose TIDE, which augments the standard transformer with EmbeddingMemory: an ensemble of K independent MemoryBlocks that map token indices to context-free semantic vectors, computed once and injected into every layer through a depth-conditioned softmax router with a learnable null bank. We theoretically and empirically establish the benefits of TIDE in addressing the issues associated with single-token identity injection as well as improve performance across multiple language modeling and downstream tasks.

Foundations

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

Your Notes