diff --git a/.vs/Python/v15/.suo b/.vs/Python/v15/.suo new file mode 100644 index 000000000..0e3f48075 Binary files /dev/null and b/.vs/Python/v15/.suo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 000000000..2fe4a449f Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/neural_network/perceptron.py b/neural_network/perceptron.py index 44c98e29c..eb8b04e85 100644 --- a/neural_network/perceptron.py +++ b/neural_network/perceptron.py @@ -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 = []