code docs fix

This commit is contained in:
fengyihang 2022-10-13 15:02:45 +08:00
parent 7af0427e4e
commit 2b10706b85
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@ mindspore.nn.AvgPool3d
通常输入的shape为 :math:`(N_{in}, C_{in}, D_{in}, H_{in}, W_{in})` AvgPool3D输出 :math:`(D_{in}, H_{in}, W_{in})` 区域平均值。给定 `kernel_size`:math:`ks = (d_{ker}, h_{ker}, w_{ker})``strides`:math:`s = (s_0, s_1, s_2)`,公式如下。
.. warning::
"kernel_size" 在[1, 255]的范围内取值。"strides" 在[1, 63]的范围内取值.
"kernel_size" 在[1, 255]的范围内取值。"strides" 在[1, 63]的范围内取值
.. math::
\text{output}(N_i, C_j, d, h, w) =

View File

@ -7,7 +7,7 @@ mindspore.nn.MaxPool3d
在一个输入Tensor上应用3D max pooling可被视为组成一个3D平面。
通常,输入的形状:math:`(N_{in}, C_{in}, D_{in}, H_{in}, W_{in})` MaxPool3d输出 :math:`(D_{in}, H_{in}, W_{in})` 维度区域最大值。给定 `kernel_size`:math:`ks = (d_{ker}, h_{ker}, w_{ker})``stride`:math:`s = (s_0, s_1, s_2)`,公式如下。
通常,输入的shape:math:`(N_{in}, C_{in}, D_{in}, H_{in}, W_{in})` MaxPool3d输出 :math:`(D_{in}, H_{in}, W_{in})` 维度区域最大值。给定 `kernel_size`:math:`ks = (d_{ker}, h_{ker}, w_{ker})``strides`:math:`s = (s_0, s_1, s_2)`,公式如下。
.. math::
\text{output}(N_i, C_j, d, h, w) =
@ -28,6 +28,7 @@ mindspore.nn.MaxPool3d
输出:
如果 `return_indices` 为False则是shape为 :math:`(N, C, D_{out}, H_{out}, W_{out})` 的Tensor。数据类型与 `x` 一致。
如果 `return_indices` 为True则是一个包含了两个Tensor的Tuple表示maxpool的计算结果以及生成max值的位置。
- **output** (Tensor) - 最大池化结果shape为 :math:`(N_{out}, C_{out}, D_{out}, H_{out}, W_{out})`的Tensor。数据类型与 `x` 一致。
- **argmax** (Tensor) - 最大值对应的索引。数据类型为int64。