Extracting Sentence Embeddings from Pretrained Transformer Models
Lukas Stankevičius, Mantas Lukoševičius
TL;DR
The paper investigates how to derive high-quality sentence embeddings from pretrained transformer models without task-specific fine-tuning. It systematically evaluates a broad set of token-aggregation and post-processing techniques, including prompt-based templates, averaging across contexts, and combining contextual with static representations, across eight STS, six clustering, and twelve classification tasks. Key findings show very large gains on unsupervised STS and clustering from representation shaping, with simple Avg baselines and even random embeddings becoming competitive when paired with effective aggregation and post-processing; prompts offer mixed gains. The work highlights the importance of isotropy and post-processing alignment considerations, provides practical baselines (e.g., Avg. and RE), and demonstrates that strong, task-robust sentence embeddings can be built without task-specific fine-tuning, enabling efficient retrieval-augmented generation and broad applicability.
Abstract
Pre-trained transformer models shine in many natural language processing tasks and therefore are expected to bear the representation of the input sentence or text meaning. These sentence-level embeddings are also important in retrieval-augmented generation. But do commonly used plain averaging or prompt templates sufficiently capture and represent the underlying meaning? After providing a comprehensive review of existing sentence embedding extraction and refinement methods, we thoroughly test different combinations and our original extensions of the most promising ones on pretrained models. Namely, given 110 M parameters, BERT's hidden representations from multiple layers, and many tokens, we try diverse ways to extract optimal sentence embeddings. We test various token aggregation and representation post-processing techniques. We also test multiple ways of using a general Wikitext dataset to complement BERT's sentence embeddings. All methods are tested on eight Semantic Textual Similarity (STS), six short text clustering, and twelve classification tasks. We also evaluate our representation-shaping techniques on other static models, including random token representations. Proposed representation extraction methods improve the performance on STS and clustering tasks for all models considered. Very high improvements for static token-based models, especially random embeddings for STS tasks, almost reach the performance of BERT-derived representations. Our work shows that the representation-shaping techniques significantly improve sentence embeddings extracted from BERT-based and simple baseline models.
