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

Fixed some typos in AvgPooling Docs #14324

Merged
merged 1 commit into from
Mar 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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