[doc] fix IndexAdd attr axis range bound

This commit is contained in:
xupan 2023-02-15 19:24:00 +08:00
parent 448b3f6f2d
commit 3b5f4ac1be
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ mindspore.ops.IndexAdd
.. py:class:: mindspore.ops.IndexAdd(axis, use_lock=True, check_index_bound=True)
将Tensor `y` 加到Tensor `x` 的指定 `axis``indices``axis` 取值范围为[0, len(x.dim) - 1] `indices` 取值范围为[0, len(x[axis]) - 1]。
将Tensor `y` 加到Tensor `x` 的指定 `axis``indices``axis` 取值范围为[-len(x.dim), len(x.dim) - 1] `indices` 取值范围为[0, len(x[axis]) - 1]。
参数:
- **axis** (int) - 进行索引的axis。