Papers
Topics
Authors
Recent
Search
2000 character limit reached

Info-Gain Sampler Overview

Updated 3 July 2026
  • Info-Gain Sampler is a technique that selects data points by maximizing expected information gain using criteria such as mutual information and entropy reduction.
  • It is widely applied in active learning, Bayesian experimental design, and neural decoding to improve sampling efficiency and predictive accuracy.
  • Its implementations range from Monte Carlo methods and Fisher information proxies to gradient-based approximations, ensuring robust and scalable performance.

An Info-Gain Sampler is a sampling or acquisition strategy that selects data points, actions, or queries which maximize information gain as measured by formal information-theoretic criteria—typically mutual information or expected reduction in uncertainty—about quantities of interest such as model parameters, labels, or future observations. These methods are foundational in active learning, Bayesian experimental design, neural decoding, data subset selection, and active user interaction. Info-Gain Samplers operationalize the principle that optimal sampling focuses on acquiring the most valuable information per unit cost, leading to greater statistical efficiency, improved learning, and robustness in a broad range of applications.

1. Core Information-Theoretic Criteria

The canonical objective underlying Info-Gain Samplers is mutual information, often instantiated as expected information gain (EIG), between an unknown quantity (e.g., model weights θ\theta, labels yy, output zz) and a hypothetical observation, action, or data point xx conditioned on existing data DD. The archetypal form is: I[y;θx,D]=H[yx,D]Ep(θD)[H[yx,θ]]I[y; \theta \mid x, D] = H[y \mid x, D] - \mathbb{E}_{p(\theta \mid D)}[ H[y \mid x, \theta] ] where H[]H[\cdot] denotes Shannon entropy. For experimental design, the EIG can be written as: EIG(x)=Ep(y,θ)[logp(θy)p(θ)]\text{EIG}(x) = \mathbb{E}_{p(y, \theta)} \big[ \log \frac{p(\theta \mid y)}{p(\theta)} \big] Such criteria are instantiated directly in prediction-space via Monte Carlo sampling (e.g., MC-dropout), in parameter/weight-space via Fisher information proxies (e.g., log-det of Hessians), or via low-complexity approximations such as gradient norms and representative subset designs (Kirsch et al., 2022, Li et al., 2024, Deb et al., 20 May 2025).

2. Representative Algorithmic Instantiations

Depending on domain and computational constraints, Info-Gain Samplers are implemented through:

  • Prediction-space Monte Carlo: Directly estimate predictive entropy and conditional entropies by sampling from p(θD)p(\theta \mid D) and computing empirical averages (Kirsch et al., 2022).
  • Fisher/Hessian-based proxies: Approximate EIG using the log-determinant or trace of per-sample Fisher information matrices, enabling batch acquisition via greedy maximization of submodular objectives (Deb et al., 20 May 2025).
  • Gradient-based methods: Single-sample or gradient-norm approximations (EGL, GraNd), where IxgxgxTI_x \approx g_x g_x^T; practical for large-scale settings (Kirsch et al., 2022).
  • Submodular selection: Diverse batch selection via monotone submodular maximization (e.g., yy0 of aggregated Fisher or similarity matrices), yielding strong theoretical guarantees (Deb et al., 20 May 2025, Chen et al., 18 Apr 2025).
  • Active query and input selection: For program synthesis or user interaction, utilize per-candidate entropy over outputs to select highly informative queries (Tiwari et al., 2020).

Pseudocode for typical greedy EIG-maximizing selection, as in FisherSFT, is:

yy8 (Deb et al., 20 May 2025)

3. Applications Across Domains

Masked Diffusion Model Decoding

The Info-Gain Sampler for MDMs proposes actions that maximally reduce average entropy across masked positions, capturing both immediate and downstream impacts on uncertainty. The score balances information gain (expected drop in state entropy) against the immediate entropy cost of a decoding step (Yang et al., 20 Feb 2026). This results in consistent gains in generative fidelity, reasoning accuracy, and creativity, as empirically demonstrated on reasoning, code, image, and language generation tasks.

Supervised and Few-shot Data Selection

In LLM supervised fine-tuning, EIG-driven subset selection (e.g., FisherSFT) achieves greater efficiency by focusing the SFT on examples that maximize last-layer Fisher information (Deb et al., 20 May 2025). In in-context learning (MaxIG), EIG maximization targets demonstration examples that most reduce prediction entropy for the test set, substantially increasing accuracy and lowering variance (Liu et al., 2023).

Active Learning & Bayesian Design

Info-Gain Samplers underlie Bayesian Active Learning for Discriminative models (BALD), active selection in medical imaging (where AEIG additionally handles class imbalance via reweighting), and graph-cognizant node sampling (where expected model change is measured via KL, total variation, or mean squared deviation of the GMRF posterior) (Kirsch et al., 2022, Mehta et al., 2022, Berberidis et al., 2017). Transport-based EIG estimation extends the approach to high-dimensional or likelihood-free settings with optimal bias-variance tradeoffs (Li et al., 2024).

Active Pairwise Comparisons and Program Synthesis

In pairwise comparison experiments (e.g., quality assessment), EIG-based samplers such as ASAP select pairs that maximize the reduction in posterior entropy over latent scores, leveraging approximate message passing for posterior inference and batch optimization through minimum spanning trees (Mikhailiuk et al., 2020). In program synthesis, Info-Gain Samplers select user queries with maximal conditional entropy over outputs, driving efficient convergence with minimal interaction (Tiwari et al., 2020).

Information-Gain in Semantic Space

MIG (Maximize Information Gain) extends the paradigm to semantic label-graph-based selection for instruction-tuning, where submodular measures of accumulated information over propagated label graphs combine coverage (diversity) and quality, yielding instruction/data subsets that match or surpass full-dataset performance (Chen et al., 18 Apr 2025).

4. Computational Properties and Implementation Guidelines

Table: Key Info-Gain Sampler Proxies

Proxy / Method Objective Computational Cost
Prediction-space MC-dropout yy1 High, per-sample MC
Fisher log-det/trace yy2 Medium, batchable
Gradient-norm (EGL, GraNd) yy3 Low
Submodular log-det (batch) yy4 Medium–high
Semantic-graph submodular (MIG) yy5 GPU-efficient

Efficiency is achieved via closed-form updates, submodular greedy maximization, or batched computation (e.g., all candidate decodings in a single MDM KV-cache). Many schemes admit rigorous approximation guarantees (greedy yy6 bounds). For high-dimensional settings, transport maps and eigenvalue-based dimensionality reduction control sample complexity and information loss (Li et al., 2024).

5. Theoretical Guarantees and Limitations

Submodular maximization ensures near-optimal batch selection efficiency, with monotonicity and diminishing returns of information gain substantiated for Fisher-based and semantic-graph objectives (Deb et al., 20 May 2025, Chen et al., 18 Apr 2025). FisherSFT provides statistical error bounds on parameter estimation under information-gain-based selection, decaying as yy7 under diversity and bounded feature conditions (Deb et al., 20 May 2025). In high-dimensions, the transport-based approach admits bias-variance analyses and quantifiable trade-offs between projection dimension and EIG approximation accuracy (Li et al., 2024).

Limitations arise in settings with ill-conditioned Fisher matrices (peaked softmaxes), non-stationary feature maps (features drift under ongoing fine-tuning), or heuristic proxies (gradient-based scores) that may diverge from true EIG in highly non-convex models. Moreover, surrogate metrics like margin-based uncertainty are sometimes adopted for speed, potentially underrepresenting true information gain (Meshgi et al., 2018).

6. Empirical Impact and Benchmarks

Across diverse domains, Info-Gain Samplers are validated as statistically and computationally superior to uniform, uncertainty-based, or clustering-based baselines:

These empirical results demonstrate the domain-agnostic efficiency of Info-Gain-based sample and query selection.

7. Extensions and Future Directions

Recent work extends Info-Gain Sampler methodology to:

Open research questions include dynamic adjustment of the info-gain criterion under model drift, tighter theoretical links between surrogate measures and true EIG, and scalable second-order information computation for high-capacity neural models. Further, interdisciplinary applications—such as multi-modal experiment design and interactive human-in-the-loop systems—continue to broaden the relevance of Info-Gain Samplers in contemporary research.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Info-Gain Sampler.