Papers
Topics
Authors
Recent
Search
2000 character limit reached

MDP-Formulated Adaptive Sampling

Updated 26 March 2026
  • MDP-Formulated Adaptive Sampling is a decision-theoretic framework that models states, actions, transitions, and rewards for sequential sample selection under uncertainty.
  • It employs risk-aware optimization using metrics like CVaR and incorporates diversity measures to prevent repetitive sampling, ensuring robust adaptation.
  • Algorithmic frameworks such as PDTS integrate posterior risk modeling and diversity regularization to achieve provable optimality in meta-RL, robotics, and other adaptive domains.

A Markov Decision Process (MDP)-formulated adaptive sampling is a rigorous decision-theoretic approach to the sequential selection of samples (or tasks, data points, measurement queries, etc.), in which the evolution of the learner’s state and the impact of sample selection are explicitly modeled as an MDP. This paradigm enables planning, risk-aware optimization, and the use of statistically principled sampling criteria that account for uncertainty, diversity, and robustness. MDP-structured adaptive sampling frameworks have been applied across a range of domains, including meta-reinforcement learning, statistical estimation, online monitoring, and robust policy adaptation. They facilitate the design of algorithms with provable optimality properties and empirical advantages over heuristic or myopic alternatives.

1. Formal Structure of MDP-Formulated Adaptive Sampling

MDP-formulated adaptive sampling is characterized by a precise specification of state, action, transition, and reward spaces. A canonical instance, as given by recent work, defines the MDP tuple M=(S,A,P,R)\mathcal{M} = (S, A, P, R) with finite or infinite horizon TT (Qu et al., 27 Apr 2025):

  • State space SS: The state encodes the current knowledge or parameterization of the adaptive learner, such as the parameters θ\theta of a policy, the posterior belief μt\mu_t over unknown variables, or a history of observations.
  • Action space AtA_t: Each action is a subset or batch Jt+1J_{t+1} of candidate tasks or samples, typically drawn from a pool. For batch size BB, At={J⊂Tt:∣J∣=B}A_t = \{ J \subset \mathcal{T}_t : |J|=B \}, where Tt\mathcal{T}_t is the candidate pool (size TT0) sampled i.i.d. from a data or task distribution.
  • Transition dynamics TT1: The system transitions deterministically or stochastically from TT2 to TT3 via a learner update TT4, such as a gradient-based adaptation step or a Bayesian update.
  • Reward TT5: The reward quantifies the gain achieved by selecting TT6 in state TT7. In risk-averse setups, this is often the improvement in a robustness measure, e.g., TT8; in uncertainty reduction, TT9 where SS0 is a function of posterior uncertainty (2502.06076).

The terminal objective is typically the minimization of expected or risk-averse loss (e.g., final SS1) or uncertainty at horizon SS2.

2. Algorithmic Instantiations: Posterior and Diversity Synergized Task Sampling (PDTS)

The PDTS algorithm (Qu et al., 27 Apr 2025) exemplifies a rigorous MDP-based adaptive task sampling method for robust adaptation:

  • Posterior risk modeling: PDTS maintains a variational model over adaptation risk with a global latent SS3 encoding the training history SS4. The generative model is SS5, with a recognition model SS6. The model is updated by maximizing a 3-term evidence lower bound (ELBO).
  • Posterior prediction: Posterior-predictive mean and variance for a candidate task SS7 are computed as SS8, and SS9 under the variational posterior.
  • Diversity regularization: For batch θ\theta0, the diversity score is θ\theta1 for a suitable metric θ\theta2.
  • Acquisition step: Sample θ\theta3, generate risk candidates θ\theta4 for θ\theta5, and select

θ\theta6

  • Policy update: Apply θ\theta7 to obtain θ\theta8.

This stepwise process is iterated until horizon θ\theta9, yielding a batch-adaptive policy that is both risk-sensitive and diversity-seeking.

3. Theoretical Insights and Connections to Bandit Structures

The MDP-formulation facilitates strong theoretical guarantees and clarifications:

  • Reduction to infinite-armed bandits: When the action at each round is a subset drawn from a large candidate pool, the adaptive sampling MDP is shown to correspond to an infinite-armed bandit (i-MAB) over subsets μt\mu_t0 (Qu et al., 27 Apr 2025). Traditional multi-pass UCB schemes such as MPTS are interpreted as UCB-based solvers for i-MABs.
  • Reward definition and CVaR integration: Conditional Value-at-Risk (CVaR) is incorporated both in the reward and as the terminal evaluation criterion, aligning the sample acquisition policy with risk-averse adaptation goals.
  • Regret and exploration guarantees: Standard Top-μt\mu_t1 (UCB) strategies on large pools tend to collapse—i.e., select similar tasks repeatedly. Diversity regularization provably prevents this collapse, ensuring coverage of worst-case regions as μt\mu_t2—recovering nearly worst-case (CVaR, μt\mu_t3) optimization.
  • Bellman optimality: The value function satisfies optimality equations:

μt\mu_t4

and

μt\mu_t5

4. Application Domains and Empirical Evaluation

MDP-formulated adaptive sampling has demonstrated efficacy in multiple challenging environments:

  • Few-shot meta-RL: Using a MAML backbone on benchmarks such as ReacherPos, Walker2dVel, PDTS yields >15% improvement in μt\mu_t6 over risk-agnostic baselines, with competitive average returns.
  • Domain randomization for policy transfer: On tasks such as LunarLander and Walker2dMassVel, PDTS outperforms group-DRO and MPTS, achieving up to 73% gains in CVaR and 1.3–2.4μt\mu_t7 faster adaptation.
  • Robotics and visual DR: PDTS secures highest empirical CVaR and success rates with minimal computational overhead.
  • Regression under distributional shift: In sinusoid 10-shot regression, PDTS attains the lowest MSE and tightest CVaR bounds.

These results demonstrate sample-efficiency and robustness, particularly in zero-shot and out-of-distribution adaptation settings (Qu et al., 27 Apr 2025).

5. Practical Implementation and Algorithmic Pipeline

A prototypical workflow for MDP-formulated adaptive sampling includes:

  1. Risk/uncertainty modeling: Bayesian/variational surrogate models for risk or loss under known and candidate tasks are fitted and updated online.
  2. Batch candidate selection: Large pools of anonymous tasks or samples are generated at each stage.
  3. Posterior evaluation and diversity scoring: Risk (e.g., through posterior mean, variance, or acquisition function) and diversity measures are computed efficiently.
  4. Combinatorial subset selection: Efficient algorithms (single-pass posterior sampling, diversity-regularized search) select a batch maximizing the acquisition objective.
  5. Policy update: The learner updates parameters or beliefs using the selected batch.
  6. Iterative adaptation: The process is repeated over the finite horizon.

The computational expense beyond classical UCB is marginal; PDTS, for example, avoids the μt\mu_t8 cost of multi-pass UCB by a single forward pass and a combinatorial search (Qu et al., 27 Apr 2025).

6. Extensions and Open Problems

Several research directions remain open:

  • Alternative risk measures: Beyond CVaR, alternative coherent or divergence-based risk metrics (e.g., mean-semi-deviation) may yield improved or more interpretable trade-offs.
  • Richer diversity structures: Submodular functions, coverage heuristics, or determinantal point processes could improve sample diversity.
  • Automated curriculum design: Integration with curriculum learning or unsupervised environment design (UED) may enhance adaptation and exploration.
  • Surrogate modeling: More expressive risk or difficulty surrogates, such as graph-structured, attention-based, or GP-based models, could extend scalability and informativeness.
  • Regret and complexity bounds: Rigorous regret analyses for diversity-regularized i-MABs and adaptive sampling MDPs remain largely open.

Current frameworks are agnostic to the underlying policy family and can be deployed in meta-RL, domain randomization, active learning, and supervised meta-learning. They enable principled, efficient, and robust worst-case-aware adaptation in high-dimensional, randomized, and non-stationary environments (Qu et al., 27 Apr 2025).

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 MDP-Formulated Adaptive Sampling.