You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2019/03/05 16:43:15 UTC

[incubator-mxnet] branch master updated: Fixed some typos in AvgPooling Docs (#14324)

This is an automated email from the ASF dual-hosted git repository.

zhasheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new ef1c4ba  Fixed some typos in AvgPooling Docs (#14324)
ef1c4ba is described below

commit ef1c4ba966053f5105fb984fd7faad2a6f0bfb9a
Author: Daniel <da...@imperial.ac.uk>
AuthorDate: Tue Mar 5 17:42:53 2019 +0100

    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 c210081..4122a08 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`.