Fixed typo error in perceptron.py

This commit is contained in:
dilson 2018-11-14 21:08:43 -03:00
parent 74a65017ca
commit 84ae00197f
3 changed files with 1 additions and 1 deletions

BIN
.vs/Python/v15/.suo Normal file

Binary file not shown.

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

View File

@ -115,7 +115,7 @@ exit = [-1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, -1, -1, -1, -1, 1, 1, 1, 1, -1
network = Perceptron(sample=samples, exit = exit, learn_rate=0.01, epoch_number=1000, bias=-1)
network.trannig()
network.training()
while True:
sample = []