Skip to content

Commit 374822b

Browse files
authored
fix some docs test=develop;test=document_fix (#29376)
1 parent 1198077 commit 374822b

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

python/paddle/nn/functional/conv.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ def conv3d(x,
11151115
Args:
11161116
x (Tensor): The input is 5-D Tensor with shape [N, C, D, H, W], the data
11171117
type of input is float16 or float32 or float64.
1118-
weight (Variable): The convolution kernel, a Tensor with shape [M, C/g, kD, kH, kW],
1118+
weight (Tensor): The convolution kernel, a Tensor with shape [M, C/g, kD, kH, kW],
11191119
where M is the number of filters(output channels), g is the number of groups,
11201120
kD, kH, kW are the filter's depth, height and width respectively.
11211121
bias (Tensor, optional): The bias, a Tensor of shape [M, ].
@@ -1151,22 +1151,10 @@ def conv3d(x,
11511151
11521152
Returns:
11531153
A Tensor representing the conv3d, whose data type is
1154-
the same with input. If act is None, the tensor variable storing the
1155-
convolution result, and if act is not None, the tensor variable storing
1154+
the same with input. If act is None, the tensor storing the
1155+
convolution result, and if act is not None, the tensor storing
11561156
convolution and non-linearity activation result.
11571157
1158-
Raises:
1159-
ValueError: If `data_format` is not "NCDHW" or "NDHWC".
1160-
ValueError: If the channel dimension of the input is less than or equal to zero.
1161-
ValueError: If `padding` is a string, but not "SAME" or "VALID".
1162-
ValueError: If `padding` is a tuple, but the element corresponding to the input's batch size is not 0
1163-
or the element corresponding to the input's channel is not 0.
1164-
ShapeError: If the input is not 5-D Tensor.
1165-
ShapeError: If the input's dimension size and filter's dimension size not equal.
1166-
ShapeError: If the dimension size of input minus the size of `stride` is not 2.
1167-
ShapeError: If the number of input channels is not equal to filter's channels * groups.
1168-
ShapeError: If the number of output channels is not be divided by groups.
1169-
11701158
Examples:
11711159
.. code-block:: python
11721160

0 commit comments

Comments
 (0)