Policies.UCBalpha module¶
The UCB1 (UCB-alpha) index policy, modified to take a random permutation order for the initial exploration of each arm (reduce collisions in the multi-players setting). Reference: [Auer et al. 02].
-
Policies.UCBalpha.
ALPHA
= 4¶ Default parameter for alpha
-
class
Policies.UCBalpha.
UCBalpha
(nbArms, alpha=4, lower=0.0, amplitude=1.0)[source]¶ Bases:
Policies.UCB.UCB
The UCB1 (UCB-alpha) index policy, modified to take a random permutation order for the initial exploration of each arm (reduce collisions in the multi-players setting). Reference: [Auer et al. 02].
-
__init__
(nbArms, alpha=4, lower=0.0, amplitude=1.0)[source]¶ New generic index policy.
nbArms: the number of arms,
lower, amplitude: lower value and known amplitude of the rewards.
-
alpha
= None¶ Parameter alpha
-
computeIndex
(arm)[source]¶ Compute the current index, at time t and after \(N_k(t)\) pulls of arm k:
\[I_k(t) = \frac{X_k(t)}{N_k(t)} + \sqrt{\frac{\alpha \log(t)}{2 N_k(t)}}.\]
-
__module__
= 'Policies.UCBalpha'¶
-