模型开发接口
推理部署接口
API 相关说明
对输入张量进行 one-hot 编码。
inp (Tensor) – 输入张量。
Tensor
num_classes (int) – 表示输出张量最后一个维度的类数。
int
实际案例
>>> import numpy as np >>> x = Tensor(np.arange(1, 4, dtype=np.int32)) >>> F.one_hot(x, num_classes=4) Tensor([[0 1 0 0] [0 0 1 0] [0 0 0 1]], dtype=int32, device=xpux:0)
上一页
megengine.functional.nn.dropout
下一页
megengine.functional.nn.indexing_one_hot