File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ def __init__(
195
195
196
196
def get_corrupted_input (self , input , corruption_level ):
197
197
"""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 ``
199
199
Note : first argument of theano.rng.binomial is the shape(size) of
200
200
random numbers that it should produce
201
201
second argument is the number of trials
Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ the task.
543
543
544
544
Filter Shape
545
545
************
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
547
547
the dataset. Best results on MNIST-sized images (28x28) are usually in the 5x5
548
548
range on the first layer, while natural image datasets (often with hundreds of pixels in each
549
549
dimension) tend to use larger first-layer filters of shape 12x12 or 15x15.
Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ The set of parameters to learn is the set :math:`\theta =
90
90
\{W^{(2)},b^{(2)},W^{(1)},b^{(1)}\}`. Obtaining the gradients
91
91
:math:`\partial{\ell}/\partial{\theta}` can be achieved through the
92
92
**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!
95
95
96
96
97
97
Going from logistic regression to MLP
You can’t perform that action at this time.
0 commit comments