TL;DR
Current sentence-embedding models exhibit a consistent bias where each embedding can be expressed as a sum of a common mean and a unique component. Two training-free correction methods were developed: subtracting the mean directly (R1) and projecting embeddings off the mean direction (R2).
✦ Why It Matters
Engineers can apply R2 to improve sentence-embedding quality without additional training efforts.
Key Takeaways
Full Summary
Sentence-embedding models, which convert sentences into numerical representations, often produce biased outputs due to a common mean component present in all embeddings. Researchers investigated two training-free methods to correct this bias: the first method (R1) involves directly subtracting the mean from each embedding, while the second method (R2) projects each embedding away from the mean direction.
Using a first-order error-propagation analysis, it was demonstrated that R2 effectively cancels out the parallel component of mean-estimation error that R1 retains. The study evaluated these methods across 38 different models on the Mass dataset, revealing that R2 consistently outperformed R1 in terms of bias correction.
These findings suggest that R2 provides a more effective approach to improving the quality of sentence embeddings without requiring additional training. For engineers and researchers, this means they can enhance their models' performance with simple adjustments.
Related