Skip to content

Commit

Permalink
Merge pull request #1064 from rizar/tiny_doc_improvement
Browse files Browse the repository at this point in the history
Tiny improvement of the documentation
  • Loading branch information
dwf committed Apr 19, 2016
2 parents b0fff99 + bcbaa7e commit 17373d4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions blocks/bricks/bn.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ class BatchNormalization(RNGMixin, Feedforward):
Shape of a single input example. It is assumed that a batch axis
will be prepended to this.
broadcastable : tuple, optional
Tuple the same length as `input_dim` which specifies which of the
per-example axes should be averaged over to compute means and
Tuple of the same length as `input_dim` which specifies which of
the per-example axes should be averaged over to compute means and
standard deviations. For example, in order to normalize over all
spatial locations in a `(batch_index, channels, height, width)`
image, pass `(False, True, True)`.
image, pass `(False, True, True)`. The batch axis is always
averaged out.
conserve_memory : bool, optional
Use an implementation that stores less intermediate state and
therefore uses less memory, at the expense of 5-10% speed. Default
Expand Down

0 comments on commit 17373d4

Please sign in to comment.