python torch exp_在Pytorch中使用样本权重(sample_weight)的正确方法
step:1.将标签转换为one-hot形式。2.将每一个one-hot标签中的1改为预设样本权重的值即可在Pytorch中使用样本权重。eg:对于单个样本:loss=-Q*log(P),如下:P=[0.1,0.2,0.4,0.3]Q=[0,0,1,0]loss=-Q*np.log(P)增加样本权重则为loss=-Q*log(P)*sample_weightP=[0.1,0.2,0.4,0.3]Q