Skip to content

Commit

Permalink
Fixed typo error in perceptron.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dilson committed Nov 15, 2018
1 parent 74a6501 commit 84ae001
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file added .vs/Python/v15/.suo
Binary file not shown.
Binary file added .vs/slnx.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion neural_network/perceptron.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def sign(self, u):

network = Perceptron(sample=samples, exit = exit, learn_rate=0.01, epoch_number=1000, bias=-1)

network.trannig()
network.training()

while True:
sample = []
Expand Down

0 comments on commit 84ae001

Please sign in to comment.