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