From 80a7d4912a3e95ae0883588cd3da4cc0fd32bbc4 Mon Sep 17 00:00:00 2001 From: Pariksheet Pinjari <pariksheet.pinjari@huawei.com> Date: Mon, 25 Jun 2018 21:54:16 +0530 Subject: [PATCH] Documentation error fixed (#1337) Updated documentation error --- topi/python/topi/nn/pooling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topi/python/topi/nn/pooling.py b/topi/python/topi/nn/pooling.py index 910b556a5..0660ce7f1 100644 --- a/topi/python/topi/nn/pooling.py +++ b/topi/python/topi/nn/pooling.py @@ -69,14 +69,14 @@ def pool(data, stride : list/tuple of two ints Stride size, [stride_height, stride_width] - paddding : list/tuple of two ints + padding : list/tuple of two ints Pad size, [pad_height, pad_width] pool_type : str Pool type, 'max' or 'avg' ceil_mode : bool - Whether to use ceil when caculate output size. + Whether to use ceil when calculating output size. layout: string Layout of the input data. -- GitLab