fix deformconv2d docs

This commit is contained in:
zhangyinxia 2023-03-06 19:54:27 +08:00
parent 7bf397ea1c
commit cb1ef4f802
2 changed files with 0 additions and 13 deletions

View File

@ -50,9 +50,3 @@ mindspore.ops.deformable_conv2d
.. note::
- 这是一个实验性质的接口,将来有可能被修改或删除。
- 在Ascend平台上目前仅支持AI-CORE的实现因此有如下条件限制
- :math:`C_{in}` 能被8整除。
- `deformable_groups` 必须等于1。
- `offsets` 的数据是浮点数类型(即需要包含小数部分)。
- `kernel_size` 需要满足 :math:`3 * kernel\_size[0] * kernel\_size[1] > 8`

View File

@ -2597,13 +2597,6 @@ def deformable_conv2d(x, weight, offsets, kernel_size, strides, padding, bias=No
Note:
- This is an experimental interface that is subject to change or deletion.
- For Ascend platform, only AI-CORE kernel is implemented, which has the following limitations:
- :math:`C_{in}` cannot be divisible by 8 is not supported, e.g. `x` is :math:`(N, 2, H_{in}, W_{in})`.
- `deformable_groups` must equal to 1.
- `offsets` value is float which does not contain a decimal part is not supported, e.g. `offsets` is assigned
with "numpy.ones()".
- `kernel_size` should meet the requirement::math:`3 * kernel\_size[0] * kernel\_size[1] > 8`.
Supported Platforms:
``Ascend`` ``GPU`` ``CPU``