forked from mindspore-Ecosystem/mindspore
!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:
commit
172d60957d
|
@ -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]范围内。只支持常量值。
|
||||
|
||||
**输出:**
|
||||
|
||||
Tensor,Tensor的shape为 :math:`(1, x_1, x_2, ..., x_R)` ( `axis` 的值为0)。其数据类型与 `input_x` 的相同。
|
||||
|
||||
**异常:**
|
||||
|
||||
- **ValueError** - `axis` 的值不是int或不在有效范围内。
|
||||
获取更多详情请查看 :func:`mindspore.ops.expand_dims` 。
|
|
@ -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` 。
|
Loading…
Reference in New Issue