isoexp/contextual/contextual_linucb.py [28:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                 bound_features=None, noise_variance=None, bound_context=None, alpha=None):
        self.K = nb_arms
        self.dim = dimension
        self.reg_factor = reg_factor
        self.delta = delta
        self.exploration_coeff = alpha
        self.iteration = None
        self.bound_context = bound_context
        self.bound_features = bound_features
        self.noise_variance = noise_variance

        self.reset()

    def reset(self):
        d = self.dim
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



isoexp/mab/contextual_mab_algs.py [78:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                 bound_features=None, noise_variance=None, bound_context=None, alpha=None):
        self.K = nb_arms
        self.dim = dimension
        self.reg_factor = reg_factor
        self.delta = delta
        self.exploration_coeff = alpha
        self.iteration = None
        self.bound_context = bound_context
        self.bound_features = bound_features
        self.noise_variance = noise_variance

        self.reset()

    def reset(self):
        d = self.dim
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



