Arm-Specific Learning Rates
- Arm-Specific Learning Rates are adaptive per-arm learning parameters in multi-armed bandit algorithms that leverage surrogate probabilities for tailored updates.
- They employ closed-form update rules and efficient surrogate measures, ensuring stability and rapid adaptation without heavy optimization overhead.
- This method achieves best-of-both-worlds regret guarantees in both adversarial and stochastic settings by dynamically balancing exploration and exploitation.
Arm-specific learning rates refer to the practice of setting or adapting the learning rate parameter for each arm individually in online learning algorithms, particularly in stochastic and adversarial multi-armed bandit (MAB) problems. These rates may depend on the data and the current state of the algorithm, providing adaptivity and potentially yielding improved regret guarantees and empirical performance compared to global, time-homogeneous step sizes. The design, analysis, and implementation of arm-specific learning rates play a central role in contemporary bandit methodologies, with particular relevance to frameworks such as Follow-the-Regularized-Leader (FTRL) and Follow-the-Perturbed-Leader (FTPL).
1. Theoretical Foundations
Arm-specific learning rates emerged from the need to balance exploration and exploitation while responding to heterogeneity among arms, variation in rewards, or adversarial loss sequences. Rather than using a single learning rate for all arms and all rounds, algorithms may define rates potentially as functions of arm-specific statistics (e.g., estimated losses or probabilities of selection), or more generally as functions of the state of the algorithm.
Theoretical treatments often rely on concepts such as the probability simplex over arms, Markov chain evolution induced by the chosen rates, and trade-offs between stability and penalty components in regret decompositions. The paper "Regret Analysis of a Markov Policy Gradient Algorithm for Multi-arm Bandits" notes that learning rates can be made dependent on the current state of the algorithm, and such Markovian dependence enables refined regret and stability analyses (though the full formulas or theorems are not detailed) (Denisov et al., 2020).
2. Surrogate-Probability Approaches and FTPL
A major challenge in FTPL-style bandits is the lack of closed-form for the true sampling probabilities of each arm under the perturbation mechanism. Recent work addresses this through computationally tractable surrogate probability functions, which are used both for estimating importance weights and designing adaptive arm-specific learning rates (Lee et al., 4 Jun 2026).
The surrogate probabilities and are defined as follows: where is the cumulative (importance-weighted) loss of arm , is its rank by loss, and is a perturbation parameter. These quantities serve as 0-computable proxies for 1 and can guide the update of learning rates in a probability-adaptive manner.
3. Learning Rate Update Mechanisms
The update of learning rates in surrogate-probability-driven FTPL methods uses a stability–penalty matching principle. For each round, surrogate-based quantities 2 and 3 are computed (defined in terms of 4), and the learning rate is updated as: 5 No convex optimization steps are necessary, maintaining computational efficiency. These step sizes are global across arms for each round, but the surrogate measures retain strong per-arm adaptivity due to dependence on 6 (Lee et al., 4 Jun 2026).
4. Best-of-Both-Worlds Regret Guarantees
Adaptive learning rates tied to arm-specific surrogate probabilities achieve the so-called best-of-both-worlds (BOBW) regret bounds. For any Pareto shape parameter 7, the FTPL algorithm with these rates enjoys:
- An adversarial regret bound:
8
- For bandit settings with self-bounding constraints (e.g., corrupt stochastic rewards):
9
where 0, and 1 is a constant (Lee et al., 4 Jun 2026).
A plausible implication is that arm-dependent learning rates via surrogates can yield both efficient procedures and optimal order regret across regimes, subsuming prior adversarial or stochastic-only approaches.
5. Algorithmic Implementation and Efficiency
Implementation with arm-specific surrogates proceeds with the following steps each round:
- Compute the ranks 2 of the cumulative losses 3
- For each arm, compute 4
- Compute 5 and 6 using the surrogates
- Update 7 and 8 by the closed-form rule
- Draw perturbations and select 9 using FTPL
- Perform importance-weighted loss updates using 0-time conditional resampling
All quantities, including the surrogates for probabilities and the learning rates, are closed-form and require no per-round optimization, which preserves scalability even in large action spaces (Lee et al., 4 Jun 2026).
6. Comparisons with Prior Methods
Key points of comparison include:
- Previous FTPL methods with fixed learning rates required tuning and achieved BOBW only for the special case 1. The surrogate-based construction generalizes to all 2 (Lee et al., 4 Jun 2026).
- FTRL with Tsallis entropy can match BOBW bounds via arm-probability-dependent rates, but the approach requires solving a convex program each round to compute arm selection probabilities, increasing computational burden.
- Surrogate-based rates maintain FTPL’s “optimization-free” character while achieving the same adaptive guarantees as FTRL with explicit arm probability weighting.
7. Extensions and Broader Applications
The surrogate-probability methodology for arm-specific or probability-dependent learning rates can be extended:
- To settings where probabilities are unavailable or hard to compute, as in heavy-tailed bandits, by using surrogates to threshold or adapt skipping arms
- To combinatorial, structured, or graph-structured bandit models, where FTRL incurs projection costs
- To contextual bandits and expert advice regimes, where unified policies benefit from the same surrogate‐SPM update rule
These extensions demonstrate the versatility and potential of surrogate-probability-driven, arm-specific learning rate schemes for both classic and modern bandit applications (Lee et al., 4 Jun 2026).