模型开发接口
推理部署接口
API 相关说明
在给定的axis前添加维度。
inp (Tensor) – 输入张量。
Tensor
axis (Union[int, Sequence[int]]) – 若干新轴的位置
Union
int
Sequence
输出张量。
实际案例
>>> import numpy as np >>> x = Tensor([1, 2]) >>> out = F.expand_dims(x, 0) >>> out.numpy().shape (1, 2)
上一页
megengine.functional.broadcast_to
下一页
megengine.functional.squeeze