Exp3 loss-based estimate is unbiased
ProvedBanditAlgorithm.exp3_estimate_unbiasedbandit-algorithmsprobability
For every arm , the cumulative loss-based importance-weighted Exp3 reward estimate is unbiased: under the adversarial interconnection measure, its expectation equals the deterministic cumulative reward of arm through horizon . The reward matrix lies in , the learning rate is positive, and the policy is exactly Exp3.
Preamble
import Definitions.Def_AdversarialBandit import Definitions.Def_exp3Policy open MeasureTheory ProbabilityTheory
Formal statement
namespace BanditAlgorithm
theorem exp3_estimate_unbiased
{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)) =
∑ t : Fin n, x t i := by
sorry
end BanditAlgorithmSource
Lattimore and Szepesvári, Bandit Algorithms (CUP 2020), §11.2 Eq. (11.6) printed p. 151 and Theorem 11.1 proof Eq. (11.8) printed p. 153. https://tor-lattimore.com/downloads/book/book.pdf