Pytorch技巧
Posted sbj123456789
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytorch技巧相关的知识,希望对你有一定的参考价值。
one-hot encoding和常规label的转化
常规label指0,1,2,3,4,5,......(一个数代表一类)
#常规label转one-hot向量 def encode_onehot(labels): #用单位矩阵来构建onehot向量 classes = set(labels) classes_dict = {c: np.identity(len(classes))[i, :] for i, c in #单位矩阵 enumerate(classes)} labels_onehot = np.array(list(map(classes_dict.get, labels)), dtype=np.int32) return labels_onehot
#one-hot向量转常规label labels = torch.LongTensor(np.where(labels)[1])
以上是关于Pytorch技巧的主要内容,如果未能解决你的问题,请参考以下文章