diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-03-17 10:21:31 -0400 |
---|---|---|
committer | luz.paz <luzpaz@users.noreply.github.com> | 2018-03-17 10:21:31 -0400 |
commit | 9d232b01e684505c7396211c3d9861aaaf7c9c2c (patch) | |
tree | 5d7bb4d7c978f2c4be1acf3320f5892e8d193950 /Demos | |
parent | 30546e71c59ce06bbf03b8b3bc6be9ea2da9e540 (diff) | |
download | cython-9d232b01e684505c7396211c3d9861aaaf7c9c2c.tar.gz |
Misc. typos
Found via `codespell`
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/benchmarks/bpnn3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/benchmarks/bpnn3.py b/Demos/benchmarks/bpnn3.py index 58d6bcbd7..362bc2703 100644 --- a/Demos/benchmarks/bpnn3.py +++ b/Demos/benchmarks/bpnn3.py @@ -41,7 +41,7 @@ class NN(object): # create weights self.wi = makeMatrix(self.ni, self.nh) self.wo = makeMatrix(self.nh, self.no) - # set them to random vaules + # set them to random values for i in range(self.ni): for j in range(self.nh): self.wi[i][j] = rand(-2.0, 2.0) |