diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-16 18:19:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-16 18:19:19 (GMT) |
commit | 27d9a07db9d3bc2027003ba218acee940ae7ed3f (patch) | |
tree | 4cce09f35961ad10dedc022555b31cd6f01f36f9 | |
parent | b557de05881c2ee3408bc7487bbce15c67dc20d5 (diff) |
Typo.
-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) |