Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
1064f2b8
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
1064f2b8
编写于
4月 22, 2021
作者:
W
wangxinxin08
提交者:
GitHub
4月 22, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify conv2d_transpose docs (#32410)
* modify conv2d_transpose docs
上级
bec4b167
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
30 addition
and
40 deletion
+30
-40
python/paddle/nn/functional/conv.py
python/paddle/nn/functional/conv.py
+13
-23
python/paddle/nn/layer/conv.py
python/paddle/nn/layer/conv.py
+17
-17
未找到文件。
python/paddle/nn/functional/conv.py
浏览文件 @
1064f2b8
...
...
@@ -414,7 +414,7 @@ def conv2d(x,
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -441,8 +441,8 @@ def conv2d(x,
.. math::
H_{out}&= \
\
frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (H_f - 1) + 1))}{strides[0]} + 1 \\\\
W_{out}&= \
\
frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (W_f - 1) + 1))}{strides[1]} + 1
H_{out}&= \frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (H_f - 1) + 1))}{strides[0]} + 1 \\\\
W_{out}&= \frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (W_f - 1) + 1))}{strides[1]} + 1
Args:
x (Tensor): The input is 4-D Tensor with shape [N, C, H, W], the data type
...
...
@@ -627,7 +627,7 @@ def conv1d_transpose(x,
so for conv1d_transpose, when stride > 1, input shape maps multiple output shape.
If output_size is None, :math:`L_{out} = L^\prime_{out}`;
else, the :math:`L_{out}` of the output size must between :math:`L^\prime_{out}`
and :math:`L^\prime_{out} + stride`.
conv1d_transpose can compute the kernel size automatically.
and :math:`L^\prime_{out} + stride`.
Args:
x(Tensor): 3-D tensor with [N, C, L] or [N, L, C] format,
...
...
@@ -657,10 +657,7 @@ def conv1d_transpose(x,
Default: dilation = 1.
output_size(int|tuple|list, optional): The output image size. If output size is a
tuple, it must contain one integer, `(feature_length)`. None if use
filter_size, padding, and stride to calculate output_size.
If output_size and filter_size are specified at the same time, They
should follow the formula above. Default: None. output_size and filter_size
should not be None at the same time.
filter_size(shape of weight), padding, and stride to calculate output_size.
data_format (str, optional): Specify the data format of the input, and the data format of the output
will be consistent with that of the input. An optional string from: `"NCL"`, `"NLC"`.
The default is `"NCL"`. When it is `"NCL"`, the data is stored in the order of:
...
...
@@ -854,7 +851,7 @@ def conv2d_transpose(x,
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -893,8 +890,7 @@ def conv2d_transpose(x,
If output_size is None, :math:`H_{out} = H^\prime_{out}, W_{out} = W^\prime_{out}`;
else, the :math:`H_{out}` of the output size must between :math:`H^\prime_{out}`
and :math:`H^\prime_{out} + strides[0]`, and the :math:`W_{out}` of the output size must
between :math:`W^\prime_{out}` and :math:`W^\prime_{out} + strides[1]`,
conv2d_transpose can compute the kernel size automatically.
between :math:`W^\prime_{out}` and :math:`W^\prime_{out} + strides[1]`.
Args:
x(Tensor): 4-D Tensor with [N, C, H, W] or [N, H, W, C] format,
...
...
@@ -929,10 +925,7 @@ def conv2d_transpose(x,
Otherwise, dilation_height = dilation_width = dilation. Default: dilation = 1.
output_size(int|tuple|list, optional): The output image size. If output size is a
tuple, it must contain two integers, (image_height, image_width). None if use
filter_size, padding, and stride to calculate output_size.
If output_size is specified, output_size and filter_size (weight)'s shape
should follow the formula above. Default: None. output_size and filter_size
should not be None at the same time.
filter_size(shape of weight), padding, and stride to calculate output_size.
data_format (str, optional): Specify the data format of the input, and the data format of the output
will be consistent with that of the input. An optional string from: `"NCHW"`, `"NHWC"`.
The default is `"NCHW"`. When it is `"NCHW"`, the data is stored in the order of:
...
...
@@ -1090,7 +1083,7 @@ def conv3d(x,
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
In the above equation:
...
...
@@ -1246,7 +1239,7 @@ def conv3d_transpose(x,
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
In the above equation:
...
...
@@ -1289,8 +1282,7 @@ def conv3d_transpose(x,
size must between :math:`D^\prime_{out}` and :math:`D^\prime_{out} + strides[0]`,
the :math:`H_{out}` of the output size must between :math:`H^\prime_{out}`
and :math:`H^\prime_{out} + strides[1]`, and the :math:`W_{out}` of the output size must
between :math:`W^\prime_{out}` and :math:`W^\prime_{out} + strides[2]`,
conv3d_transpose can compute the kernel size automatically.
between :math:`W^\prime_{out}` and :math:`W^\prime_{out} + strides[2]`.
Args:
x(Tensor): The input is 5-D Tensor with shape [N, C, D, H, W] or [N, D, H, W, C], the data type
...
...
@@ -1326,10 +1318,8 @@ def conv3d_transpose(x,
dilation_width). Otherwise, dilation_depth = dilation_height = dilation_width = dilation.
Default: dilation = 1.
output_size(int|list|tuple, optional): The output image size. If output size is a
tuple, it must contain three integers, (image_depth, image_height, image_width). This
parameter only works when filter_size is None. If output_size and filter_size are
specified at the same time, They should follow the formula above. Default: None.
Output_size and filter_size should not be None at the same time.
tuple, it must contain three integers, (image_depth, image_height, image_width).
None if use filter_size(shape of weight), padding, and stride to calculate output_size.
data_format (str, optional): Specify the data format of the input, and the data format of the output
will be consistent with that of the input. An optional string from: `"NCHW"`, `"NHWC"`.
The default is `"NCHW"`. When it is `"NCHW"`, the data is stored in the order of:
...
...
python/paddle/nn/layer/conv.py
浏览文件 @
1064f2b8
...
...
@@ -199,7 +199,7 @@ class Conv1D(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -226,7 +226,7 @@ class Conv1D(_ConvNd):
.. math::
L_{out}&= \
\frac{(L_{in} + 2 * padding - (dilation * (L_f - 1) + 1))}{stride} + 1
L_{out}&= \
frac{(L_{in} + 2 * padding - (dilation * (L_f - 1) + 1))}{stride} + 1 \\
Parameters:
in_channels(int): The number of channels in the input image.
...
...
@@ -258,7 +258,7 @@ class Conv1D(_ConvNd):
of conv1d. If it is set to None or one attribute of ParamAttr, conv1d
will create ParamAttr as param_attr. If the Initializer of the param_attr
is not set, the parameter is initialized with :math:`Normal(0.0, std)`,
and the :math:`std` is :math:`(\
\
frac{2.0 }{filter\_elem\_num})^{0.5}`. Default: None.
and the :math:`std` is :math:`(\frac{2.0 }{filter\_elem\_num})^{0.5}`. Default: None.
bias_attr (ParamAttr or bool, optional): The attribute for the bias of conv1d.
If it is set to False, no bias will be added to the output units.
If it is set to None or one attribute of ParamAttr, conv1d
...
...
@@ -368,7 +368,7 @@ class Conv1DTranspose(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -404,7 +404,7 @@ class Conv1DTranspose(_ConvNd):
so for conv1d_transpose, when stride > 1, input shape maps multiple output shape.
If output_size is None, :math:`L_{out} = L^\prime_{out}`;
else, the :math:`L_{out}` of the output size must between :math:`L^\prime_{out}`
and :math:`L^\prime_{out} + stride`.
conv1d_transpose can compute the kernel size automatically.
and :math:`L^\prime_{out} + stride`.
Args:
in_channels(int): The number of channels in the input image.
...
...
@@ -540,7 +540,7 @@ class Conv2D(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -578,7 +578,7 @@ class Conv2D(_ConvNd):
of conv2d. If it is set to None or one attribute of ParamAttr, conv2d
will create ParamAttr as param_attr. If it is set to None, the parameter
is initialized with :math:`Normal(0.0, std)`, and the :math:`std` is
:math:`(\
\
frac{2.0 }{filter\_elem\_num})^{0.5}`. The default value is None.
:math:`(\frac{2.0 }{filter\_elem\_num})^{0.5}`. The default value is None.
bias_attr(ParamAttr|bool, optional): The parameter attribute for the bias of conv2d.
If it is set to False, no bias will be added to the output units.
If it is set to None or one attribute of ParamAttr, conv2d
...
...
@@ -603,9 +603,9 @@ class Conv2D(_ConvNd):
.. math::
H_{out}&= \
\
frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (kernel\_size[0] - 1) + 1))}{strides[0]} + 1
H_{out}&= \frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (kernel\_size[0] - 1) + 1))}{strides[0]} + 1
W_{out}&= \
\
frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (kernel\_size[1] - 1) + 1))}{strides[1]} + 1
W_{out}&= \frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (kernel\_size[1] - 1) + 1))}{strides[1]} + 1
Examples:
...
...
@@ -696,7 +696,7 @@ class Conv2DTranspose(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
Where:
...
...
@@ -710,7 +710,7 @@ class Conv2DTranspose(_ConvNd):
Parameters:
in_channels(int): The number of channels in the input image.
out_channels(int): The number of channels produced by the convolution.
kernel_size(int|list|uple): The kernel size. If kernel_size is a tuple,
kernel_size(int|list|
t
uple): The kernel size. If kernel_size is a tuple,
it must contain two integers, (kernel_size_H, kernel_size_W).
Otherwise, the kernel will be a square.
stride(int|list|tuple, optional): The stride size. If stride is a tuple, it must
...
...
@@ -851,7 +851,7 @@ class Conv3D(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
In the above equation:
...
...
@@ -889,7 +889,7 @@ class Conv3D(_ConvNd):
of conv3d. If it is set to None or one attribute of ParamAttr, conv3d
will create ParamAttr as param_attr. If it is set to None, the parameter
is initialized with :math:`Normal(0.0, std)`, and the :math:`std` is
:math:`(\
\
frac{2.0 }{filter\_elem\_num})^{0.5}`. The default value is None.
:math:`(\frac{2.0 }{filter\_elem\_num})^{0.5}`. The default value is None.
bias_attr(ParamAttr|bool, optional): The parameter attribute for the bias of conv3d.
If it is set to False, no bias will be added to the output units.
If it is set to None or one attribute of ParamAttr, conv3d
...
...
@@ -914,11 +914,11 @@ class Conv3D(_ConvNd):
.. math::
D_{out}&= \
\
frac{(D_{in} + 2 * paddings[0] - (dilations[0] * (kernel\_size[0] - 1) + 1))}{strides[0]} + 1
D_{out}&= \frac{(D_{in} + 2 * paddings[0] - (dilations[0] * (kernel\_size[0] - 1) + 1))}{strides[0]} + 1
H_{out}&= \
\
frac{(H_{in} + 2 * paddings[1] - (dilations[1] * (kernel\_size[1] - 1) + 1))}{strides[1]} + 1
H_{out}&= \frac{(H_{in} + 2 * paddings[1] - (dilations[1] * (kernel\_size[1] - 1) + 1))}{strides[1]} + 1
W_{out}&= \
\
frac{(W_{in} + 2 * paddings[2] - (dilations[2] * (kernel\_size[2] - 1) + 1))}{strides[2]} + 1
W_{out}&= \frac{(W_{in} + 2 * paddings[2] - (dilations[2] * (kernel\_size[2] - 1) + 1))}{strides[2]} + 1
Raises:
ValueError: If the shapes of input, filter_size, stride, padding and
...
...
@@ -1010,7 +1010,7 @@ class Conv3DTranspose(_ConvNd):
.. math::
Out = \sigma (W \
\
ast X + b)
Out = \sigma (W \ast X + b)
In the above equation:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录