You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
262 B

class Perceptron:
def __init__(self, label):
self.classifier_label = label
pass
def fit(self, X, y, weights=None):
pass
def predict(self, X):
pass
class MultiClassPerceptron:
def __init__(self):
pass