pytorch实现onehot编码转为普通label标签
时间:2021-05-04 10:51:47|栏目:Python代码|点击: 次
label转onehot的很多,但是onehot转label的有点难找,所以就只能自己实现以下,用的topk函数,不知道有没有更好的实现
one_hot = torch.tensor([[0,0,1],[0,1,0],[0,1,0]]) print(one_hot) label = torch.topk(one_hot, 1)[1].squeeze(1) print(label)
tensor([[0, 0, 1], [0, 1, 0], [0, 1, 0]]) tensor([2, 1, 1])
栏 目:Python代码
下一篇:python监控进程脚本
本文标题:pytorch实现onehot编码转为普通label标签
本文地址:http://www.codeinn.net/misctech/114828.html






