python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > pytorch onehot编码转label

pytorch实现onehot编码转为普通label标签

作者:swuxyj

今天小编就为大家分享一篇pytorch实现onehot编码转为普通label标签,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

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])

以上这篇pytorch实现onehot编码转为普通label标签就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文