Added Structure for Perceptron and Multi-Class Perceptron

isaac
Pavan Mandava 6 years ago
parent 0577f982a2
commit 3455c34601

@ -0,0 +1,17 @@
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
Loading…
Cancel
Save