paper-with-me

홈 › Papers

Big Reasoning with Small Models: Instruction Retrieval at Inference Time

2025-10-15 · Kenan Alkiek, David Jurgens, Vinod Vydiswaran arxiv

Small language models (SLMs) enable low-cost, private, on-device inference, but they often fail on problems that require specialized domain knowledge or multi-step reasoning. Existing approaches for improving reasoning either rely on scale (e.g., chain-of-thought prompting), require task-specific training that limits reuse and generality (e.g., distillation), or retrieve unstructured information that still leaves the SLM to determine an appropriate reasoning strategy. We propose instruction retrieval, an inference-time intervention that augments an SLM with structured, reusable reasoning procedures rather than raw passages. We construct an Instruction Corpus by clustering similar training questions and using a teacher model to generate generalizable guides that pair domain background with explicit step-by-step procedures. At inference, the SLM retrieves the instructions most relevant to a given query and executes the associated procedures without any additional fine-tuning. Across three challenging domains: medicine, law, and mathematics, instruction retrieval yields consistent gains for models with at least 3B parameters, improving accuracy by 9.4%, 7.9%, and 5.1%, respectively, with the strongest 14B model surpassing GPT-4o's zero-shot performance on knowledge-intensive tasks.

📄 PDF Abstract BibTeX arXiv:2510.13935

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Critic-R: Improving Agentic Search using Instruction-tuned Retrievers with Natural Language Introspective Feedback

2026-05-30 · Md Zarif Ul Alam, Alireza Salemi, Hamed Zamani arxiv

Agentic search systems iteratively interact with retrieval models to answer complex queries. Despite substantial progress, optimizing retrievers for agentic search remains challenging, often requiring heavy co-training o…

Retrieval Grounding Latent Reasoning for Dense Retrieval

2026-08-14 · Gang Zhou, Xiongxi Yu, Hu Tian, Yang Wei 외 arxiv

Reasoning-intensive retrieval requires text representations to capture not only semantic similarity, but also the reasoning needed to determine relevance under a given retrieval instruction. Existing reasoning-enhanced e…

Semantic Similarity

RAR-b: Reasoning as Retrieval Benchmark

2024-04-09 · Chenghao Xiao, G Thomas Hudson, Noura Al Moubayed

Semantic textual similartiy (STS) and information retrieval tasks (IR) tasks have been the two major avenues to record the progress of embedding models in the past few years. Under the emerging Retrieval-augmented Genera…

Information RetrievalRAGRerankingRetrieval+2

An Incomplete Loop: Deductive, Inductive, and Abductive Learning in Large Language Models

2024-04-03 · Emmy Liu, Graham Neubig, Jacob Andreas

Modern language models (LMs) can learn to perform new tasks in different ways: in instruction following, the target task is described explicitly in natural language; in few-shot prompting, the task is specified implicitl…

Instruction FollowingMachine Translation

Retrieval-of-Thought: Efficient Reasoning via Reusing Thoughts

2025-09-26 · Ammar Ahmed, Azal Ahmad Khan, Ayaan Ahmad, Sheng Di 외 arxiv

Large reasoning models improve accuracy by producing long reasoning traces, but this inflates latency and cost, motivating inference-time efficiency. We propose Retrieval-of-Thought (RoT), which reuses prior reasoning as…