# Linear-Time Demonstration Selection for In-Context Learning via Gradient Estimation

**Authors:** Ziniu Zhang, Zhenshuo Zhang, Dongyue Li, Lu Wang, Jennifer Dy, Hongyang R. Zhang

arXiv: 2508.19999 · 2025-11-05

## TL;DR

This paper presents a fast, gradient-based algorithm for selecting the most relevant demonstration examples for in-context learning, significantly reducing computation time while maintaining high accuracy.

## Contribution

It introduces a linear-time gradient estimation method for demonstration selection, outperforming embedding similarity methods in efficiency and accuracy.

## Key findings

- Achieves less than 1% error in output approximation
- Scales selection process up to 37.7 times faster on large models
- Outperforms existing embedding-based selection methods by 11% on average

## Abstract

This paper introduces an algorithm to select demonstration examples for in-context learning of a query set. Given a set of $n$ examples, how can we quickly select $k$ out of $n$ to best serve as the conditioning for downstream inference? This problem has broad applications in prompt tuning and chain-of-thought reasoning. Since model weights remain fixed during in-context learning, previous work has sought to design methods based on the similarity of token embeddings. This work proposes a new approach based on gradients of the output taken in the input embedding space. Our approach estimates model outputs through a first-order approximation using the gradients. Then, we apply this estimation to multiple randomly sampled subsets. Finally, we aggregate the sampled subset outcomes to form an influence score for each demonstration, and select $k$ most relevant examples. This procedure only requires pre-computing model outputs and gradients once, resulting in a linear-time algorithm relative to model and training set sizes. Extensive experiments across various models and datasets validate the efficiency of our approach. We show that the gradient estimation procedure yields approximations of full inference with less than ${1}\%$ error across six datasets. This allows us to scale up subset selection that would otherwise run full inference by up to ${37.7}\times$ on models with up to $34$ billion parameters, and outperform existing selection methods based on input embeddings by ${11}\%$ on average.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/2508.19999/full.md

## Figures

12 figures with captions in the complete paper: https://tomesphere.com/paper/2508.19999/full.md

## References

38 references — full list in the complete paper: https://tomesphere.com/paper/2508.19999/full.md

---
Source: https://tomesphere.com/paper/2508.19999