File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
python/paddle/fluid/layers Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1182,19 +1182,19 @@ def conv2d(input,
1182
1182
1183
1183
- Input:
1184
1184
1185
- Input shape: $ (N, C_{in}, H_{in}, W_{in})$
1185
+ Input shape: :math:` (N, C_{in}, H_{in}, W_{in})`
1186
1186
1187
- Filter shape: $ (C_{out}, C_{in}, H_f, W_f)$
1187
+ Filter shape: :math:` (C_{out}, C_{in}, H_f, W_f)`
1188
1188
1189
1189
- Output:
1190
- Output shape: $ (N, C_{out}, H_{out}, W_{out})$
1190
+ Output shape: :math:` (N, C_{out}, H_{out}, W_{out})`
1191
1191
1192
1192
Where
1193
1193
1194
1194
.. math::
1195
1195
1196
- H_{out}&= \\ frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (H_f - 1) + 1))}{strides[0]} + 1 \\ \\
1197
- W_{out}&= \\ frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (W_f - 1) + 1))}{strides[1]} + 1
1196
+ H_{out}&= \\ frac{(H_{in} + 2 * paddings[0] - (dilations[0] * (H_f - 1) + 1))}{strides[0]} + 1 \\ \\
1197
+ W_{out}&= \\ frac{(W_{in} + 2 * paddings[1] - (dilations[1] * (W_f - 1) + 1))}{strides[1]} + 1
1198
1198
1199
1199
Args:
1200
1200
input(Variable): The input image with [N, C, H, W] format.
You can’t perform that action at this time.
0 commit comments