Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fixed some typos in AvgPooling Docs (#14324)
Browse files Browse the repository at this point in the history
  • Loading branch information
djl11 authored and szha committed Mar 5, 2019
1 parent 5065f13 commit ef1c4ba
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 ef1c4ba

Please sign in to comment.