Skip to content

Commit

Permalink
Merge pull request #2926 from niboshi/doc-batch-norm-attrs
Browse files Browse the repository at this point in the history
Fix BatchNormalization docstring
  • Loading branch information
mitmul committed Jul 2, 2017
2 parents d6a04fd + 825431f commit a9f0c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chainer/links/normalization/batch_normalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class BatchNormalization(link.Link):
Attributes:
gamma (~chainer.Variable): Scaling parameter.
beta (~chainer.Variable): Shifting parameter.
avg_mean (~chainer.Variable): Population mean.
avg_var (~chainer.Variable): Population variance.
avg_mean (numpy.ndarray or cupy.ndarray): Population mean.
avg_var (numpy.ndarray or cupy.ndarray): Population variance.
N (int): Count of batches given for fine-tuning.
decay (float): Decay rate of moving average. It is used on training.
eps (float): Epsilon value for numerical stability. This value is added
Expand Down

0 comments on commit a9f0c9a

Please sign in to comment.