Skip to content

Commit e903c63

Browse files
1 parent 0c16ca5 commit e903c63

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

docs/api/paddle/nn/functional/conv1d_cn.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,14 @@ conv1d
5050
.. math::
5151
L_{out} = \frac{\left ( L_{in} -\left ( dilation*\left ( L_{f}-1 \right )+1 \right ) \right )}{stride}+1
5252
53+
.. note::
54+
别名支持: 参数名 ``input`` 可替代 ``x``。
55+
5356
参数
5457
::::::::::::
5558

5659
- **x** (Tensor) - 输入是形状为 :math:`[N, C, L]` 或 :math:`[N, L, C]` 的 4-D Tensor,N 是批尺寸,C 是通道数,L 是特征长度,数据类型为 float16, float32 或 float64。
60+
别名: ``input``。
5761
- **weight** (Tensor) - 形状为 :math:`[M, C/g, kL]` 的卷积核。M 是输出通道数,g 是分组的个数,kL 是卷积核的长度度。
5862
- **bias** (int|list|tuple,可选) - 偏置项,形状为::math:`[M,]` 。
5963
- **stride** (int|list|tuple,可选) - 步长大小。卷积核和输入进行卷积计算时滑动的步长。整数或包含一个整数的列表或元组。默认值:1。

docs/api/paddle/nn/functional/conv2d_cn.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,14 @@ conv2d
5757
5858
W_{out} = \frac{\left ( W_{in} -\left ( dilation[1]*\left ( W_{f}-1 \right )+1 \right ) \right )}{stride[1]}+1
5959
60+
.. note::
61+
别名支持: 参数名 ``input`` 可替代 ``x``。
6062

6163
参数
6264
::::::::::::
6365

6466
- **x** (Tensor) - 输入是形状为 :math:`[N, C, H, W]` 或 :math:`[N, H, W, C]` 的 4-D Tensor,N 是批尺寸,C 是通道数,H 是特征高度,W 是特征宽度,数据类型为 float16, float32 或 float64。
67+
别名: ``input``。
6568
- **weight** (Tensor) - 形状为 :math:`[M, C/g, kH, kW]` 的卷积核。M 是输出通道数,g 是分组的个数,kH 是卷积核的高度,kW 是卷积核的宽度。
6669
- **bias** (int|list|tuple,可选) - 偏置项,形状为::math:`[M,]` 。
6770
- **stride** (int|list|tuple,可选) - 步长大小。卷积核和输入进行卷积计算时滑动的步长。如果它是一个列表或元组,则必须包含两个整型数:(stride_height,stride_width)。若为一个整数,stride_height = stride_width = stride。默认值:1。

docs/api/paddle/nn/functional/conv3d_cn.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,14 @@ conv3d
3434

3535
输出形状::math:`(N, C_{out}, D_{out}, H_{out}, W_{out})`
3636

37+
.. note::
38+
别名支持: 参数名 ``input`` 可替代 ``x``。
39+
3740
参数
3841
::::::::::::
3942

4043
- **x** (Tensor) - 输入是形状为 :math:`[N, C, D, H, W]` 或 :math:`[N, D, H, W, C]` 的 5-D Tensor,N 是批尺寸,C 是通道数,D 是特征层深度,H 是特征高度,W 是特征宽度,数据类型为 float16, float32 或 float64。
44+
别名: ``input``。
4145
- **weight** (Tensor) - 形状为 :math:`[M, C/g, kH, kW]` 的卷积核(卷积核)。 M 是输出通道数,g 是分组的个数,kH 是卷积核的高度,kW 是卷积核的宽度。
4246
- **bias** (int|list|tuple,可选) - 偏置项,形状为::math:`[M,]` 。
4347
- **stride** (int|list|tuple,可选) - 步长大小。卷积核和输入进行卷积计算时滑动的步长。如果它是一个列表或元组,则必须包含两个整型数:(stride_height,stride_width)。若为一个整数,stride_height = stride_width = stride。默认值:1。

0 commit comments

Comments
 (0)