Skip to content

Commit

Permalink
Fixed some typos in AvgPooling Docs (apache#14324)
Browse files Browse the repository at this point in the history
  • Loading branch information
djl11 authored and vdantu committed Mar 31, 2019
1 parent bf40b56 commit 016be1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/mxnet/gluon/nn/conv_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ class AvgPool1D(_Pooling):
Parameters
----------
pool_size: int
Size of the max pooling windows.
Size of the average pooling windows.
strides: int, or None
Factor by which to downscale. E.g. 2 will halve the input size.
If `None`, it will default to `pool_size`.
Expand Down Expand Up @@ -903,7 +903,7 @@ class AvgPool2D(_Pooling):
Parameters
----------
pool_size: int or list/tuple of 2 ints,
Size of the max pooling windows.
Size of the average pooling windows.
strides: int, list/tuple of 2 ints, or None.
Factor by which to downscale. E.g. 2 will halve the input size.
If `None`, it will default to `pool_size`.
Expand Down Expand Up @@ -954,7 +954,7 @@ class AvgPool3D(_Pooling):
Parameters
----------
pool_size: int or list/tuple of 3 ints,
Size of the max pooling windows.
Size of the average pooling windows.
strides: int, list/tuple of 3 ints, or None.
Factor by which to downscale. E.g. 2 will halve the input size.
If `None`, it will default to `pool_size`.
Expand Down

0 comments on commit 016be1c

Please sign in to comment.