SLOT: Sample-specific Language Model Optimization at Test-time
Yang Hu, Xingyu Zhang, Xueji Fang, Zhiyang Chen, Xiao Wang, Huatian Zhang, Guojun Qi
TL;DR
SLOT introduces a lightweight test-time adaptation where a per-sample delta is added to the final hidden features before the output head, enabling gradient-based refinement of a single vector for each prompt. By optimizing this delta over a few steps using only the prompt as supervision, SLOT shifts the logits via a logit modulation vector to encourage deeper reasoning without full-model fine-tuning. Empirical results across diverse LLMs and benchmarks show meaningful gains on GSM8K and GPQA Diamond, including state-of-the-art performance for open-source 70B models, while incurring only modest inference-time overhead due to caching and updating just the last-layer representation. The approach highlights the potential of efficient, sample-specific test-time training to better align LLM behavior with individual instructions, with broad implications for reasoning-heavy tasks and practical deployment.
Abstract
We propose SLOT (Sample-specific Language Model Optimization at Test-time), a novel and parameter-efficient test-time inference approach that enhances a language model's ability to more accurately respond to individual prompts. Existing Large Language Models (LLMs) often struggle with complex instructions, leading to poor performances on those not well represented among general samples. To address this, SLOT conducts few optimization steps at test-time to update a light-weight sample-specific parameter vector. It is added to the final hidden layer before the output head, and enables efficient adaptation by caching the last layer features during per-sample optimization. By minimizing the cross-entropy loss on the input prompt only, SLOT helps the model better aligned with and follow each given instruction. In experiments, we demonstrate that our method outperforms the compared models across multiple benchmarks and LLMs. For example, Qwen2.5-7B with SLOT achieves an accuracy gain of 8.6% on GSM8K from 57.54% to 66.19%, while DeepSeek-R1-Distill-Llama-70B with SLOT achieves a SOTA accuracy of 68.69% on GPQA among 70B-level models. Our code is available at https://github.com/maple-research-lab/SLOT.
