Skip to content

Commit f7f7933

Browse files
authored
Merge pull request lisa-lab#190 from kirkins/proof_reading
Proof reading, variable inconsistency fix
2 parents 7cade8c + 147cb2e commit f7f7933

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

code/dA.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def __init__(
195195

196196
def get_corrupted_input(self, input, corruption_level):
197197
"""This function keeps ``1-corruption_level`` entries of the inputs the
198-
same and zero-out randomly selected subset of size ``coruption_level``
198+
same and zero-out randomly selected subset of size ``corruption_level``
199199
Note : first argument of theano.rng.binomial is the shape(size) of
200200
random numbers that it should produce
201201
second argument is the number of trials

doc/lenet.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ the task.
543543

544544
Filter Shape
545545
************
546-
Common filter shapes found in the litterature vary greatly, usually based on
546+
Common filter shapes found in the literature vary greatly, usually based on
547547
the dataset. Best results on MNIST-sized images (28x28) are usually in the 5x5
548548
range on the first layer, while natural image datasets (often with hundreds of pixels in each
549549
dimension) tend to use larger first-layer filters of shape 12x12 or 15x15.

doc/mlp.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ The set of parameters to learn is the set :math:`\theta =
9090
\{W^{(2)},b^{(2)},W^{(1)},b^{(1)}\}`. Obtaining the gradients
9191
:math:`\partial{\ell}/\partial{\theta}` can be achieved through the
9292
**backpropagation algorithm** (a special case of the chain-rule of derivation).
93-
Thankfully, since Theano performs automatic differentation, we will not need to
94-
cover this in the tutorial !
93+
Thankfully, since Theano performs automatic differentiation, we will not need to
94+
cover this in the tutorial!
9595

9696

9797
Going from logistic regression to MLP

0 commit comments

Comments
 (0)