!34628 optimizes the documentation of chinese API of ExpandDims,Shape

Merge pull request !34628 from zhangfanghe/code_docs_Shape_ExpandDims_master_519
This commit is contained in:
i-robot 2022-05-19 08:03:48 +00:00 committed by Gitee
commit 172d60957d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 28 deletions

View File

@ -5,18 +5,4 @@ mindspore.ops.ExpandDims
对输入 `input_x` 在给定的轴上添加额外维度。
.. note::
如果指定的轴是负数则索引从末尾向后计数从1开始。
**输入:**
- **input_x** (Tensor) - Tensor的shape是 :math:`(x_1, x_2, ..., x_R)`
- **axis** (int) - 指定需添加额外维度的轴。轴值必须在[-input_x.ndim-1, input_x.ndim]范围内。只支持常量值。
**输出:**
TensorTensor的shape为 :math:`(1, x_1, x_2, ..., x_R)` `axis` 的值为0。其数据类型与 `input_x` 的相同。
**异常:**
- **ValueError** - `axis` 的值不是int或不在有效范围内。
获取更多详情请查看 :func:`mindspore.ops.expand_dims`

View File

@ -5,16 +5,4 @@ mindspore.ops.Shape
返回输入Tensor的shape。用于静态shape。
静态shape无需运行图即可获得的shape。这是Tensor的固有性质也可能是未知的。静态shape信息可以通过人工设置完成。无论图输入是什么静态shape都不会受到影响。
**输入:**
- **input_x** (Tensor) - Tensor的shape是 :math:`(x_1, x_2, ..., x_R)`
**输出:**
tuple[int]输出是由多个整数组成的tuple。 :math:`(x_1, x_2, ..., x_R)`
**异常:**
- **TypeError** - `input_x` 不是Tensor。
获取更多详情请查看 :func:`mindspore.ops.shape`