class Classifier: def __init__(self, alpha): self.alpha = alpha def fit(self, x): self.x = x self.y = self.x