From ef1c4ba966053f5105fb984fd7faad2a6f0bfb9a Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 5 Mar 2019 17:42:53 +0100 Subject: [PATCH] Fixed some typos in AvgPooling Docs (#14324) --- python/mxnet/gluon/nn/conv_layers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/mxnet/gluon/nn/conv_layers.py b/python/mxnet/gluon/nn/conv_layers.py index c210081f6071..4122a08563fa 100644 --- a/python/mxnet/gluon/nn/conv_layers.py +++ b/python/mxnet/gluon/nn/conv_layers.py @@ -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`. @@ -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`. @@ -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`.