isoexp/mab/main_mab.py [44:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gamma = eta/2
settings = {
    "T": T,
    "nb_simu": nb_simu,
    "random_state": random_state,
    "K": K,
}



algorithms = {
    #'EXP3': lambda T, MAB: FTRL(T, MAB, eta=eta, alg='epx_3'),
    'INF': lambda T, MAB: FTRL(T, MAB, eta=eta, alg='inf'),
    'Attacked INF': lambda T, MAB: attacked_FTRL(T, MAB, target_arm=a_star, eta=eta, alg='inf'),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



isoexp/main_mab.py [51:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gamma = eta/2
settings = {
    "T": T,
    "nb_simu": nb_simu,
    "random_state": random_state,
    "K": K,
}



algorithms = {
    'INF': lambda T, MAB: FTRL(T, MAB, eta=eta, alg='inf'),
    'Attacked INF': lambda T, MAB: attacked_FTRL(T, MAB, target_arm=a_star, eta=eta, alg='inf'),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



