Skip to content

Commit

Permalink
Merge pull request #30 from ragavvenkatesan/dev
Browse files Browse the repository at this point in the history
bug fix with docs
  • Loading branch information
Ragav Venkatesan committed Feb 27, 2017
2 parents 5039773 + b89d1a0 commit c46453b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/pantry/tutorials/batch_norm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ networks. In batch norm we do the following:
x = (\frac{x - \mu_b}{\sigma_b})\gamma + \beta
:math: `x` is the input (and the output) of this operation, :math:`\mu_b` and :math:`\sigma_b`
The :math:`x` is the input (and the output) of this operation, :math:`\mu_b` and :math:`\sigma_b`
are the mean and the variance of the minibatch of :math:`x` supplied. :math:`\gamma` and
:math:`beta` are learnt using back propagation. This will also store a running mean and a running
:math:`\beta` are learnt using back propagation. This will also store a running mean and a running
variance, which is used during inference time.

By default batch normalization can be performed on convolution and dot product layers using
Expand Down

0 comments on commit c46453b

Please sign in to comment.