megengine.functional.squeeze

squeeze(inp, axis=None)[源代码]

删除形状(shape)中下标为1的维度。

参数
返回类型

Tensor

返回

输出张量。

实际案例

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)