diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/alla_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |