From 8777e8c1e98b6f2d7798aba36b83e50761b9921d Mon Sep 17 00:00:00 2001 From: zhongpu <2013000149@qq.com> Date: Mon, 9 Dec 2019 22:07:34 +0800 Subject: [PATCH] fix Conv2DTranspose API, test=develop (#21403) --- python/paddle/fluid/dygraph/nn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/fluid/dygraph/nn.py b/python/paddle/fluid/dygraph/nn.py index 33641f6c26e..89c43aebbfd 100644 --- a/python/paddle/fluid/dygraph/nn.py +++ b/python/paddle/fluid/dygraph/nn.py @@ -2307,8 +2307,8 @@ class Conv2DTranspose(layers.Layer): filter, and dilations, strides, paddings. Input and output are in NCHW format. Where N is batch size, C is the number of feature map, H is the height of the feature map, and W is the width of the feature map. - Filter's shape is [MCHW] , where M is the number of output feature map, - C is the number of input feature map, H is the height of the filter, + Filter's shape is [MCHW] , where M is the number of input feature map, + C is the number of output feature map, H is the height of the filter, and W is the width of the filter. If the groups is greater than 1, C will equal the number of input feature map divided by the groups. If bias attribution and activation type are provided, bias is added to -- GitLab