mindspore.ops.unsqueeze
- mindspore.ops.unsqueeze(input, dim)[source]
Adds an additional dimension to input at the given dim.
- Parameters
- Returns
Tensor, the shape of tensor is \((1, n_1, n_2, ..., n_R)\) if the value of dim is 0. It has the same data type as input.
- Raises
TypeError – If dim is not an int.
ValueError – If dim is not in the valid range \([-input.ndim-1, input.ndim]\).
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> input_tensor = Tensor(np.array([[2, 2], [2, 2]]), mindspore.float32) >>> output = ops.unsqueeze(input_tensor, dim=0) >>> print(output) [[[2. 2.] [2. 2.]]]