mindspore.Tensor.reshape

mindspore.Tensor.reshape(*shape)

基于给定的 shape ,对当前Tensor进行重新排列。

shape 最多只能有一个-1,在这种情况下,它可以从剩余的维度和当前Tensor的元素个数中推断出来。

参数:
  • shape (Union[tuple[int], list[int], Tensor[int]]) - 如果 shape 是list或者tuple,其元素需为整数,并且只支持常量值。如 (y1,y2,...,yS) ,如果 shape 是Tensor,数据类型必须为int32或者int64,并且只支持一维Tensor。

返回:

Tensor,若给定的 shape 中不包含-1, 则输出 shape(y1,y2,...,yS) 。若给定的 shape 中第 k 个位置为-1,则输出 shape(y1,...,yk1,i=1Rxiy1×...×yk1×yk+1×...×yS,yk+1,...,yS),其中输入Tensor的 shape(x1,x2,...,xR)

异常:
  • ValueError - 如果 shape 包含超过一个-1。

  • ValueError - 如果 shape 包含的元素小于-1。

  • ValueError - 针对于 shape 中不包含-1的场景,如果 shape 的元素总数不等于当前Tensor的元素总数,i=1Rxii=1Syi 中包含-1的场景,如果除去 shape 中的-1外,其他元素总数无法被当前Tensor的元素总数整除。 i=1Rxi

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> input = Tensor(np.array([[-0.1, 0.3, 3.6], [0.4, 0.5, -3.2]]), mindspore.float32)
>>> output = Tensor.reshape(input, (3, 2))
>>> print(output)
[[-0.1  0.3]
 [ 3.6  0.4]
 [ 0.5 -3.2]]