From 81dc78d871b9b14df6de39bffc048a487b562758 Mon Sep 17 00:00:00 2001 From: paland3 Date: Mon, 10 Dec 2018 22:34:17 -0800 Subject: [PATCH] Update pooling.py (#14998) Summary: Strange line in the documentation. Pull Request resolved: https://github.com/pytorch/pytorch/pull/14998 Differential Revision: D13413235 Pulled By: soumith fbshipit-source-id: 80d05ec1185719b785f0aac914bc2369c1174f2f --- torch/nn/modules/pooling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch/nn/modules/pooling.py b/torch/nn/modules/pooling.py index 942f8c1..e92c5ea 100644 --- a/torch/nn/modules/pooling.py +++ b/torch/nn/modules/pooling.py @@ -151,7 +151,7 @@ class MaxPool2d(_MaxPoolNd): @weak_module class MaxPool3d(_MaxPoolNd): r"""Applies a 3D max pooling over an input signal composed of several input - planes. This is not a test + planes. In the simplest case, the output value of the layer with input size :math:`(N, C, D, H, W)`, output :math:`(N, C, D_{out}, H_{out}, W_{out})` and :attr:`kernel_size` :math:`(kD, kH, kW)` -- 2.7.4