๐ค AI Summary
This work addresses the suboptimal performance of large language models (LLMs) in plug-and-play text embedding tasks, which stems from their embeddings being overly aligned with high-frequency, low-information tokens in the lexical space, thereby degrading semantic expressiveness. To mitigate this issue, the authors propose EmbedFilterโa training-free, linear filtering method that analyzes the LLMโs unembedding matrix to identify and suppress the subspace implicitly encoding frequent tokens. This approach substantially enhances zero-shot downstream task performance across multiple prominent LLMs. Moreover, EmbedFilter enables significant embedding dimensionality reduction without compromising effectiveness, thereby reducing storage overhead and accelerating retrieval.
๐ Abstract
Large language models exhibit impressive zero-shot capabilities across a wide range of downstream tasks. However, they struggle to function as off-the-shelf embedding models, leading to suboptimal performance on massive text embedding benchmarks. In this paper, we identify a potential cause underlying this deficiency. Our motivation stems from an unexpected observation: text embeddings tend to align with frequent but uninformative tokens when projected onto the vocabulary space. We argue that this excessive expression of high-frequency tokens suppresses the model's ability to capture nuanced semantics. To address this, we introduce EmbedFilter, a simple linear transformation designed to refine text embeddings derived from LLMs directly. Specifically, we uncover that the unembedding matrix within LLMs encodes a latent space that is actively writing these frequent tokens into embedding space. By filtering out this subspace, EmbedFilter suppress the influence of high-frequency tokens, thereby enhancing semantic representations. As a compelling byproduct, this enables an inherent dimensionality reduction, lowering index storage and speedup retrieval while fully preserving the refined embedding quality. Our experiments across multiple LLM backbones demonstrate that LLMs equipped with EmbedFilter achieve superior zero-shot downstream performance even with significantly reduced embedding dimensions. We hope our findings provide deeper insights into the mechanisms of LLM-based representations and inspire more principled designs to improve text embeddings training. Our code is available at https://github.com/CentreChen/EmbFilter.