We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35308bd commit b9a5c22Copy full SHA for b9a5c22
Neural_Network/perceptron.py
@@ -25,7 +25,7 @@ def __init__(self, sample, exit, learn_rate=0.01, epoch_number=1000, bias=-1):
25
self.col_sample = len(sample[0])
26
self.weight = []
27
28
- def trainnig(self):
+ def training(self):
29
for sample in self.sample:
30
sample.insert(0, self.bias)
31
0 commit comments