Papers
Topics
Authors
Recent
Search
2000 character limit reached

PAC Battling Bandits: Plackett-Luce Model

Updated 29 April 2026
  • The paper introduces the PAC Battling Bandits framework under the Plackett–Luce model, establishing optimal sample complexity bounds for both Winner Information and Top-m Ranking feedback.
  • It exploits the IIA property to convert rank-ordered outcomes into consistent pairwise estimates, enabling robust elimination and adaptive selection strategies.
  • The study shows that richer feedback (top-m rankings) leads to a proportional m-fold improvement in learning efficiency, offering practical benefits for online decision-making.

The Probably Approximately Correct (PAC) Battling Bandits framework under the Plackett–Luce (PL) model addresses subsetwise preference learning in online settings. At each round, a learner chooses a subset of kk arms out of nn, and receives stochastic feedback indicating information about the relative quality of those arms, for example, the winner or a partial ranking. The objective is to efficiently identify an arm whose performance is close to optimal with high confidence, according to ϵ,δ\epsilon,\delta–PAC criteria. This model generalizes the classic dueling bandits scenario (k=2k=2 sets), and exploits the information structure of the PL model, which connects subsetwise observations to underlying latent scores. The principal research advances in this domain characterize the sample complexity limits under different feedback regimes and design algorithms that optimally leverage the feedback granularity.

1. The Plackett–Luce Model and Subsetwise Preference Learning

The PL model parameterizes each arm i[n]i \in [n] by a positive score θi>0\theta_i>0. For any non-empty subset S[n]S \subseteq [n], the probability that ii is the winner (top-ranked) in SS is given by

Pr(iS)=θijSθj.\Pr(i \mid S) = \frac{\theta_i}{\sum_{j \in S} \theta_j}.

A full ranking nn0 of nn1 is sampled recursively: at each position nn2, select an item from the remaining pool with probability proportional to its nn3, remove it, and repeat. The PL model uniquely satisfies the independence of irrelevant alternatives (IIA), so for any nn4, the odds ratio nn5 equals nn6. This property underpins the consistent extraction of pairwise preferences from subsetwise and rank-ordered feedback.

2. PAC Identification Objective and Feedback Models

A sequential algorithm aims to identify an nn7-optimal arm, typically assumed without loss of generality to be arm 1, i.e., nn8. An arm nn9 is ϵ,δ\epsilon,\delta0–optimal if the pairwise win probability

ϵ,δ\epsilon,\delta1

An algorithm is ϵ,δ\epsilon,\delta2–PAC if it stops in finite time and returns an ϵ,δ\epsilon,\delta3–optimal arm with probability at least ϵ,δ\epsilon,\delta4. The learning protocol is defined by the choice of subsets of size ϵ,δ\epsilon,\delta5 and two main types of feedback per subset:

  • Winner Information (WI): Observe only the winner in the subset.
  • Top-ϵ,δ\epsilon,\delta6 Ranking (TR): Observe the first ϵ,δ\epsilon,\delta7 items in the full PL ranking of the subset, with ϵ,δ\epsilon,\delta8.

As special cases, ϵ,δ\epsilon,\delta9 reduces to WI, and k=2k=20 corresponds to full ranking feedback.

3. Information-Theoretic Lower Bounds

The fundamental limits of PAC identification mirror the amount of information provided per round. Under WI, no matter the subset size k=2k=21, the minimax sample complexity lower bound is

k=2k=22

for some PL instance. This shows that increasing the batch size under WI provides no asymptotic gain over the classic dueling bandit (k=2k=23) setting. The proof proceeds by constructing adversarially hard PL instances and applying a change-of-measure argument based on KL-divergence, showing that distinguishing between nearly optimal arms requires this many samples (Saha et al., 2018).

With TR feedback of length k=2k=24, the information per round increases proportionally, yielding a lower bound

k=2k=25

and a corresponding k=2k=26 multiplicative advantage. When k=2k=27, this reaches

k=2k=28

Thus, richer feedback can dramatically accelerate learning by packing more pairwise comparison information in each round.

4. Algorithmic Frameworks and Upper Bounds

Several PAC identification algorithms match the above lower bounds, both in the worst case and adaptively to instance hardness:

  • Trace-the-Best initializes with a reference arm, partitions the rest into k=2k=29-sized batches, battles each batch against the reference arm for i[n]i \in [n]0 rounds using WI, and updates the reference if a batch contains an empirically superior arm. The sample complexity is

i[n]i \in [n]1

for WI (Saha et al., 2018).

  • Divide-and-Conquer repeatedly partitions the survivor set into i[n]i \in [n]2-sized groups, performs in-group battles, and retains empirical batch winners, iteratively shrinking the survivor set with progressively smaller tolerances. This also achieves the i[n]i \in [n]3 bound for WI (Saha et al., 2018).
  • Halve-the-Pool allows arbitrary subset sizes up to i[n]i \in [n]4 and improves constants/log factors by median elimination.

For TR feedback (i[n]i \in [n]5), these same structural ideas generalize: each rank-ordered output is "rank-broken" into i[n]i \in [n]6 pairwise tallies per round, and the confidence intervals scale as i[n]i \in [n]7. Both Trace-the-Best and Divide-and-Conquer achieve

i[n]i \in [n]8

for length-i[n]i \in [n]9 TR feedback (Saha et al., 2018).

5. Instance-Optimality and Adaptive Sample Complexity

Subsequent advances show that sample complexity can adapt to the actual hardness of the PL instance, encoded via arm-specific gaps θi>0\theta_i>00. The PAC-Wrapper framework executes a sequence of phases, each phase finding an approximately best item among current survivors using a PAC subroutine, and eliminating arms that appear statistically worse. For winner-only feedback, the instance-optimal sample complexity is

θi>0\theta_i>01

where θi>0\theta_i>02 is the sum of the θi>0\theta_i>03 largest PL scores (Saha et al., 2019). Under TR feedback, this is improved by θi>0\theta_i>04: θi>0\theta_i>05 Lower bounds confirm the optimality of these rates. This approach ensures that when all gaps θi>0\theta_i>06 are large, the algorithm stops much earlier than in worst-case settings, but never exceeds the minimax guarantee.

6. Fixed-Budget Identification and Error Exponents

In the fixed-budget setting, where the learner is given a total play budget θi>0\theta_i>07, the fundamental objective becomes minimizing the misidentification probability θi>0\theta_i>08. The lower bound on achievable θi>0\theta_i>09 for any symmetric algorithm is

S[n]S \subseteq [n]0

where

S[n]S \subseteq [n]1

Uniform-Allocation algorithms that allocate batches evenly and iterate elimination based on empirical wins attain (up to logarithmic factors) the optimal exponential decay in S[n]S \subseteq [n]2, with error controlled as

S[n]S \subseteq [n]3

and sufficient budget

S[n]S \subseteq [n]4

(Saha et al., 2019).

7. Practical Implications and Further Observations

Allowing winner-only feedback from larger subsets (S[n]S \subseteq [n]5) does not improve the sample complexity over the dueling bandit setting; thus, subset size only matters under richer feedback regimes. In contrast, collecting top-S[n]S \subseteq [n]6 rankings yields an S[n]S \subseteq [n]7-fold speedup, and the efficiency gain is optimal in both worst- and instance-dependent settings. Rank-breaking exploits the IIA structure of PL, converting rank information into consistent pairwise empirical estimates and enabling sharper confidence bounds. Recent numerical experiments confirm that instance-optimal algorithms can adaptively stop much earlier on "easy" PL instances and scale gracefully with problem difficulty and feedback granularity (Saha et al., 2018, Saha et al., 2019).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

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 PAC Battling Bandits under Plackett-Luce.