mindspore.ops.Reshape

class mindspore.ops.Reshape[源代码]

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

更多参考详见 mindspore.ops.reshape()

支持平台:

Ascend GPU CPU

样例:

>>> input_x = Tensor(np.array([[-0.1, 0.3, 3.6], [0.4, 0.5, -3.2]]), mindspore.float32)
>>> reshape = ops.Reshape()
>>> output = reshape(input_x, (3, 2))
>>> print(output)
[[-0.1  0.3]
 [ 3.6  0.4]
 [ 0.5 -3.2]]