Exp3 expected estimated-advantage bound
ProvedBanditAlgorithm.exp3_estimate_advantage_boundbandit-algorithmsprobability
For every comparator arm , the expected cumulative Exp3 estimate for minus the learner’s expected collected reward is at most . This is the expectation form of the exponential-weights potential inequality (11.15), using that the total expected loss-estimator mass is at most .
Preamble
import Definitions.Def_AdversarialBandit import Definitions.Def_exp3Policy open MeasureTheory ProbabilityTheory
Formal statement
namespace BanditAlgorithm
theorem exp3_estimate_advantage_bound
{k : ℕ} (hk : 1 < k) (n : ℕ) (hn : 0 < n)
(x : ℕ → Fin k → ℝ) (hx : ∀ t : ℕ, ∀ i : Fin k, x t i ∈ Set.Icc (0 : ℝ) 1)
(π : BanditPolicy k) (η : ℝ) (hη : 0 < η) (hπ : IsExp3Policy η π)
(i : Fin k) :
(∫ h, exp3Estimate η n h i ∂(adversarialMeasure x π n)) -
(∫ h, (∑ t, (h t).2) ∂(adversarialMeasure x π n)) ≤
Real.log k / η + η * n * k / 2 := by
sorry
end BanditAlgorithmSource
Lattimore and Szepesvári, Bandit Algorithms (CUP 2020), Theorem 11.2 proof, printed pp. 156–157, especially Eq. (11.15) and the expectation calculation immediately following it; Eq. (11.9) printed p. 153 identifies the expected estimated advantage. https://tor-lattimore.com/downloads/book/book.pdf