From a9df5edec7ad622c3f4b5d8a3ef6b20530e896fe Mon Sep 17 00:00:00 2001 From: dinglinhe Date: Thu, 29 Apr 2021 10:48:09 +0800 Subject: [PATCH] Update Conv3d descriptions --- mindspore/nn/layer/conv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/nn/layer/conv.py b/mindspore/nn/layer/conv.py index 894d266e70..a579ecc70a 100644 --- a/mindspore/nn/layer/conv.py +++ b/mindspore/nn/layer/conv.py @@ -495,7 +495,7 @@ class Conv3d(_Conv): where :math:`ccor` is the cross-correlation operator. - If the 'pad_mode' is set to be "valid", the output height and width will be + If the 'pad_mode' is set to be "valid", the output depth, height and width will be :math:`\left \lfloor{1 + \frac{D_{in} + \text{padding[0]} + \text{padding[1]} - \text{kernel_size[0]} - (\text{kernel_size[0]} - 1) \times (\text{dilation[0]} - 1) }{\text{stride[0]}}} \right \rfloor` and :math:`\left \lfloor{1 + \frac{H_{in} + \text{padding[2]} + \text{padding[3]} - \text{kernel_size[1]} -