isoexp/linear/linearbandit.py [43:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self.b = np.zeros((d,))

        self.range = 1
        self.est_bound_theta = 0
        self.est_bound_features = 0
        self.n_samples = 0
        self.iteration = 0

    @property
    def n_actions(self):
        return self.arm_features.shape[0]

    @property
    def n_features(self):
        return self.arm_features.shape[1]

    def auto_alpha(self):
        d = self.n_features
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



isoexp/linear/linearbandit.py [121:137]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self.b = np.zeros((d,))
        self.range = 1
        self.est_bound_theta = 0
        self.est_bound_features = 0
        self.n_samples = 0
        self.iteration = 0

    @property
    def n_actions(self):
        return self.arm_features.shape[0]

    @property
    def n_features(self):
        return self.arm_features.shape[1]

    def auto_alpha(self):
        d = self.n_features
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



