API 相关说明
删除形状(shape)中下标为1的维度。
inp (Tensor) – 输入张量。
Tensor
axis (Union[int, Sequence[int], None]) – 将要被移除的轴的位置。
Union
int
Sequence
None
输出张量。
实际案例
import numpy as np from megengine import tensor import megengine.functional as F x = tensor(np.array([1, 2], dtype=np.int32).reshape(1, 1, 2, 1)) out = F.squeeze(x, 3) print(out.numpy().shape)
输出:
(1, 1, 2)
上一页
megengine.functional.expand_dims
下一页
megengine.functional.concat