API 相关说明
将一个张量重塑为给定的目标形状;逻辑元素的总数必须保持不变
inp (Tensor) – 输入张量。
Tensor
target_shape (Iterable[int]) – 目标形状,所有组件将被连接成目标形状,其中可能包含用来表示unspec_axis的值为-1的元素。
Iterable
int
实际案例
import numpy as np from megengine import tensor import megengine.functional as F x = tensor(np.arange(12, dtype=np.int32)) out = F.reshape(x, (3, 4)) print(out.numpy())
输出:
[[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11]]
上一页
megengine.functional.copy
下一页
megengine.functional.flatten