From 27d9a07db9d3bc2027003ba218acee940ae7ed3f Mon Sep 17 00:00:00 2001 From: Cyrille Bagard Date: Thu, 16 Aug 2018 20:19:19 +0200 Subject: Typo. --- python/alla_net.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/alla_net.py b/python/alla_net.py index 2e6d64c..02c5f8d 100644 --- a/python/alla_net.py +++ b/python/alla_net.py @@ -65,7 +65,7 @@ class NeuralNetwork(): self._o_error = y - o self._o_delta = self._o_error * self.sigmoidPrime(o) - # How much the hidden layer weights contributed to output error ? + # How much the hidden layer weights contributed to output error? self._z2_error = self._o_delta.dot(self._w2.T) self._z2_delta = self._z2_error * self.sigmoidPrime(self._z2) -- cgit v0.11.2-87-g4458