!47139 modify format

Merge pull request !47139 from 俞涵/code_docs_r2al
This commit is contained in:
i-robot 2022-12-23 08:59:10 +00:00 committed by Gitee
commit 890109a9f1
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ mindspore.ops.Conv2DTranspose
- **pad** (Union[int, tuple[int]]) - 指定要填充的填充值。默认值0。如果 `pad` 是整数,则顶部、底部、左侧和右侧的填充都等于 `pad` 。如果 `pad` 是四个整数的tuple则顶部、底部、左侧和右侧的填充分别等于pad[0]、pad[1]、pad[2]和pad[3]。
- **pad_list** (Union[str, None]) - 卷积填充方式顶部、底部、左、右。默认值None表示不使用此参数。
- **mode** (int) - 指定不同的卷积模式。当前未使用该值。默认值1。
- **stride** (Union[int. tuple[int]]) - 卷积核移动的步长。默认值1。
- **dilation** (Union[int. tuple[int]]) - 卷积核膨胀尺寸。默认值1。
- **stride** (Union[int, tuple[int]]) - 卷积核移动的步长。默认值1。
- **dilation** (Union[int, tuple[int]]) - 卷积核膨胀尺寸。默认值1。
- **group** (int) - 将过滤器拆分为组。默认值1。
- **data_format** (str) - 输入和输出的数据格式。它应该是'NHWC'或'NCHW',默认值是'NCHW'。

View File

@ -2586,8 +2586,8 @@ class Conv2DTranspose(Conv2DBackpropInput):
padding of top, bottom, left and right equal to pad[0], pad[1], pad[2], and pad[3] correspondingly.
pad_list (Union[str, None]): The pad list like (top, bottom, left, right). Default: None.
mode (int): Modes for different convolutions. The value is currently not used. Default: 1.
stride (Union[int. tuple[int]]): The stride to be applied to the convolution filter. Default: 1.
dilation (Union[int. tuple[int]]): Specifies the dilation rate to be used for the dilated convolution.
stride (Union[int, tuple[int]]): The stride to be applied to the convolution filter. Default: 1.
dilation (Union[int, tuple[int]]): Specifies the dilation rate to be used for the dilated convolution.
Default: 1.
group (int): Splits input into groups. Default: 1.
data_format (str): The format of input and output data. It should be 'NHWC' or 'NCHW'\