PyTorch的SoftMax交叉熵损失和梯度用法

作者:_icrazy_ 时间:2023-06-17 12:46:49 

在PyTorch中可以方便的验证SoftMax交叉熵损失和对输入梯度的计算

关于softmax_cross_entropy求导的过程,可以参考HERE

示例


# -*- coding: utf-8 -*-
import torch
import torch.autograd as autograd
from torch.autograd import Variable
import torch.nn.functional as F
import torch.nn as nn
import numpy as np

# 对data求梯度, 用于反向传播
data = Variable(torch.FloatTensor([[1.0, 2.0, 3.0], [1.0, 2.0, 3.0], [1.0, 2.0, 3.0]]), requires_grad=True)

# 多分类标签 one-hot格式
label = Variable(torch.zeros((3, 3)))
label[0, 2] = 1
label[1, 1] = 1
label[2, 0] = 1
print(label)

# for batch loss = mean( -sum(Pj*logSj) )
# for one : loss = -sum(Pj*logSj)
loss = torch.mean(-torch.sum(label * torch.log(F.softmax(data, dim=1)), dim=1))

loss.backward()
print(loss, data.grad)

输出:


tensor([[ 0., 0., 1.],
   [ 0., 1., 0.],
   [ 1., 0., 0.]])
# loss:损失 和 input's grad:输入的梯度
tensor(1.4076) tensor([[ 0.0300, 0.0816, -0.1116],
   [ 0.0300, -0.2518, 0.2217],
   [-0.3033, 0.0816, 0.2217]])

注意

对于单输入的loss 和 grad


data = Variable(torch.FloatTensor([[1.0, 2.0, 3.0]]), requires_grad=True)

label = Variable(torch.zeros((1, 3)))
#分别令不同索引位置label为1
label[0, 0] = 1
# label[0, 1] = 1
# label[0, 2] = 1
print(label)

# for batch loss = mean( -sum(Pj*logSj) )
# for one : loss = -sum(Pj*logSj)
loss = torch.mean(-torch.sum(label * torch.log(F.softmax(data, dim=1)), dim=1))

loss.backward()
print(loss, data.grad)

其输出:


# 第一组:
lable: tensor([[ 1., 0., 0.]])
loss: tensor(2.4076)
grad: tensor([[-0.9100, 0.2447, 0.6652]])

# 第二组:
lable: tensor([[ 0., 1., 0.]])
loss: tensor(1.4076)
grad: tensor([[ 0.0900, -0.7553, 0.6652]])

# 第三组:
lable: tensor([[ 0., 0., 1.]])
loss: tensor(0.4076)
grad: tensor([[ 0.0900, 0.2447, -0.3348]])

"""
解释:
对于输入数据 tensor([[ 1., 2., 3.]]) softmax之后的结果如下
tensor([[ 0.0900, 0.2447, 0.6652]])
交叉熵求解梯度推导公式可知 s[0, 0]-1, s[0, 1]-1, s[0, 2]-1 是上面三组label对应的输入数据梯度
"""

pytorch提供的softmax, 和log_softmax 关系


# 官方提供的softmax实现
In[2]: import torch
...: import torch.autograd as autograd
...: from torch.autograd import Variable
...: import torch.nn.functional as F
...: import torch.nn as nn
...: import numpy as np
In[3]: data = Variable(torch.FloatTensor([[1.0, 2.0, 3.0]]), requires_grad=True)
In[4]: data
Out[4]: tensor([[ 1., 2., 3.]])
In[5]: e = torch.exp(data)
In[6]: e
Out[6]: tensor([[ 2.7183,  7.3891, 20.0855]])
In[7]: s = torch.sum(e, dim=1)
In[8]: s
Out[8]: tensor([ 30.1929])
In[9]: softmax = e/s
In[10]: softmax
Out[10]: tensor([[ 0.0900, 0.2447, 0.6652]])
In[11]: # 等同于 pytorch 提供的 softmax
In[12]: org_softmax = F.softmax(data, dim=1)
In[13]: org_softmax
Out[13]: tensor([[ 0.0900, 0.2447, 0.6652]])
In[14]: org_softmax == softmax # 计算结果相同
Out[14]: tensor([[ 1, 1, 1]], dtype=torch.uint8)

# 与log_softmax关系
# log_softmax = log(softmax)
In[15]: _log_softmax = torch.log(org_softmax)
In[16]: _log_softmax
Out[16]: tensor([[-2.4076, -1.4076, -0.4076]])
In[17]: log_softmax = F.log_softmax(data, dim=1)
In[18]: log_softmax
Out[18]: tensor([[-2.4076, -1.4076, -0.4076]])

官方提供的softmax交叉熵求解结果


# -*- coding: utf-8 -*-
import torch
import torch.autograd as autograd
from torch.autograd import Variable
import torch.nn.functional as F
import torch.nn as nn
import numpy as np

data = Variable(torch.FloatTensor([[1.0, 2.0, 3.0], [1.0, 2.0, 3.0], [1.0, 2.0, 3.0]]), requires_grad=True)
log_softmax = F.log_softmax(data, dim=1)

label = Variable(torch.zeros((3, 3)))
label[0, 2] = 1
label[1, 1] = 1
label[2, 0] = 1
print("lable: ", label)

# 交叉熵的计算方式之一
loss_fn = torch.nn.NLLLoss() # reduce=True loss.sum/batch & grad/batch
# NLLLoss输入是log_softmax, target是非one-hot格式的label
loss = loss_fn(log_softmax, torch.argmax(label, dim=1))
loss.backward()
print("loss: ", loss, "\ngrad: ", data.grad)

"""
# 交叉熵计算方式二
loss_fn = torch.nn.CrossEntropyLoss() # the target label is NOT an one-hotted
#CrossEntropyLoss适用于分类问题的损失函数
#input:没有softmax过的nn.output, target是非one-hot格式label
loss = loss_fn(data, torch.argmax(label, dim=1))
loss.backward()
print("loss: ", loss, "\ngrad: ", data.grad)
"""
"""

输出


lable: tensor([[ 0., 0., 1.],
   [ 0., 1., 0.],
   [ 1., 0., 0.]])
loss: tensor(1.4076)
grad: tensor([[ 0.0300, 0.0816, -0.1116],
   [ 0.0300, -0.2518, 0.2217],
   [-0.3033, 0.0816, 0.2217]])

通过和示例的输出对比, 发现两者是一样的

来源:https://blog.csdn.net/u010472607/article/details/82705567

标签:PyTorch,SoftMax,交叉熵损失,梯度
0
投稿

猜你喜欢

  • SQLServer2008提示评估期已过解决方案

    2024-01-22 02:01:28
  • Python3计算三角形的面积代码

    2022-06-20 21:03:54
  • Golang优雅保持main函数不退出的办法

    2023-07-12 21:15:54
  • MySQL系列之redo log、undo log和binlog详解

    2024-01-17 16:30:59
  • 2行css代码屏蔽网页挂马

    2008-09-29 18:54:00
  • python字符串string的内置方法实例详解

    2022-06-14 01:10:23
  • python语言基本语句用法总结

    2023-07-03 01:26:34
  • python保存字典和读取字典的实例代码

    2023-05-12 14:17:54
  • mysql 8.0.17 安装配置图文教程

    2024-01-14 11:44:16
  • python归并排序算法过程实例讲解

    2023-12-02 23:28:06
  • Python过滤txt文件内重复内容的方法

    2023-08-04 17:41:48
  • pyinstaller打包后,配置文件无法正常读取的解决

    2022-12-17 18:22:09
  • 数据库工具sysbench安装教程和性能测试例子

    2024-01-28 06:00:42
  • sqlserver存储过程语法详解

    2024-01-21 04:43:53
  • 如何利用Pandas删除某列指定值所在的行

    2023-10-29 11:49:39
  • js实现黑白div块画空心的图形

    2023-08-29 07:24:21
  • 有关wxpython pyqt内存占用问题分析

    2022-11-02 11:37:14
  • 如何用idea数据库编写快递e站

    2024-01-23 08:43:56
  • PHP5 mysqli的prepare准备语句使用说明

    2023-11-22 12:50:29
  • Python利用operator模块实现对象的多级排序详解

    2023-09-26 20:11:09
  • asp之家 网络编程 m.aspxhome.com