11、PyTorch中如何进行向量微分、矩阵微分与计算雅克比行列式

embedded/2024/12/4 22:33:22/

文章目录

  • 1. Jacobian matrix
  • 2. python 代码

1. Jacobian matrix

  • 计算
    f ( x ) = [ f 1 = x 1 2 + 2 x 2 f 2 = 3 x 1 + 4 x 2 2 ] , J = [ ∂ f 1 ∂ x 1 ∂ f 1 ∂ x 2 ∂ f 2 ∂ x 1 ∂ f 2 ∂ x 2 ] = [ 2 x 1 2 3 8 x 2 ] \begin{equation} f(x)=\begin{bmatrix} f_1=x_1^2+2x_2\\\\f_2=3x_1+4x_2^2\end{bmatrix}, J=\begin{bmatrix} \frac{\partial f_1}{\partial x_1}&\frac{\partial f_1}{\partial x_2}\\\\ \frac{\partial f_2}{\partial x_1}&\frac{\partial f_2}{\partial x_2} \end{bmatrix}=\begin{bmatrix} 2x_1&2\\\\3&8x_2\end{bmatrix} \end{equation} f(x)= f1=x12+2x2f2=3x1+4x22 ,J= x1f1x1f2x2f1x2f2 = 2x1328x2
  • 我们假设 x 1 = 1 , x 2 = 2 x_1=1,x_2=2 x1=1,x2=2,可得Jacobian matrix 表示如下:
    J = [ 2 x 1 2 3 8 x 2 ] = [ 2 2 3 16 ] \begin{equation} J=\begin{bmatrix} 2x_1&2\\\\3&8x_2\end{bmatrix}=\begin{bmatrix} 2&2\\\\3&16\end{bmatrix} \end{equation} J= 2x1328x2 = 23216
  • 因为fx为向量,所以在pytorch中一般是没有的,我们需要定义一个标量z
    z = [ 1 1 ] [ f 1 f 2 ] → ∂ z ∂ f = [ 1 1 ] \begin{equation} z=\begin{bmatrix}1&1\end{bmatrix}\begin{bmatrix}f_1\\\\f_2\end{bmatrix}\to \frac{\partial z}{\partial f}=\begin{bmatrix}1&1\end{bmatrix} \end{equation} z=[11] f1f2 fz=[11]
  • 根据链式法则:
    ∂ z ∂ f ⋅ ∂ f ∂ x = ∂ z ∂ x \begin{equation} \frac{\partial z}{\partial f} \cdot\frac{\partial f}{\partial x}= \frac{\partial z}{\partial x} \end{equation} fzxf=xz
  • 假设我们代入可得:
    ∂ z ∂ f ⋅ ∂ f ∂ x = [ 1 1 ] [ 2 2 3 16 ] = [ 5 18 ] \begin{equation} \frac{\partial z}{\partial f} \cdot\frac{\partial f}{\partial x}= \begin{bmatrix}1&1\end{bmatrix}\begin{bmatrix} 2&2\\\\3&16\end{bmatrix}=\begin{bmatrix}5&18\end{bmatrix} \end{equation} fzxf=[11] 23216 =[518]
  • 根据pytorch中的自动微分,我们可以得到
    ∂ z ∂ x = [ 5 18 ] \begin{equation} \frac{\partial z}{\partial x}=\begin{bmatrix}5&18\end{bmatrix} \end{equation} xz=[518]
  • 小结1:我们用自动微分,是无法像直接用jacobian函数样求解jacobian矩阵,而是因为引入[1,1]向量后,只能求得和值[5,18]
  • 小结2:想用反向传播求得jacobian矩阵,需要将fx中的每一项标量拆开求得,后再叠加在一起

2. python 代码

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# @FileName  :JacobianTest.py
# @Time      :2024/11/25 19:28
# @Author    :Jason Zhang
import torch
from torch import nn
from torch.autograd.functional import jacobiandef funx(x):return torch.stack([x[0] ** 2 + 2 * x[1], 3 * x[0] + 4 * x[1] ** 2])if __name__ == "__main__":run_code = 0in_x = torch.tensor([1.0, 2.0], dtype=torch.float, requires_grad=True)y = funx(in_x)y.backward(torch.ones_like(y))my_jacobian = jacobian(funx, in_x)print(f"my_jacobian=\n{my_jacobian}")x_grad = in_x.gradin_x_ones = torch.ones_like(in_x)jacobian_x_grad = in_x_ones @ my_jacobianprint(f"x_grad={x_grad}")print(f"jacobian_x_grad={jacobian_x_grad}")
my_jacobian=
tensor([[ 2.,  2.],[ 3., 16.]])
x_grad=tensor([ 5., 18.])
jacobian_x_grad=tensor([ 5., 18.])

http://www.ppmy.cn/embedded/141862.html

相关文章

循环神经网络(RNN)简述

RNN及其变体 1、概述 (一)、概念 RNN(Recurrent Neural Network), 中文称作循环神经网络, 它一般以序列数据为输入, 通过网络内部的结构设计有效捕捉序列之间的关系特征, 一般也是以序列形式进行输出。 RNN的循环机制使模型隐层**上一时间步产生的结果, 能够作为当下时间步…

快速理解微服务中Gateway的概念

一.基本概念 定义: 在微服务架构中,Spring Cloud Gateway 是一个用于API网关的框架,它是一个基于 Spring Framework 的高效、可扩展的路由器和反向代理,它能够将外部请求转发到适当的微服务,并提供一些与请求处理相关…

快速理解倒排索引在ElasticSearch中的作用

一.基础概念 定义: 倒排索引是一种数据结构,用来加速文本数据的搜索和检索,和传统的索引方式不同,倒排索引会被每个词汇项与包含该词汇项的文档关联起来,从而去实现快速的全文检索。 举例: 在传统的全文…

SQL Server第五章-聚合函数在查询中的使用(头歌)答案代码

第1关:AVG() 函数的使用 select prod_name,prod_pricefrom Productswhere prod_price>(select AVG(prod_price) from Products) 16第2关:COUNT() 函数的使用 select count(*)from Productswhere prod_price>18 17.第3关:MAX() 函数…

vue3小案例-信息系统

第一步,拉取或者创建一个含有 axios 插件的 vue3 项目 创建项目教程:vue3项目搭建-1-创建项目-CSDN博客 安装 axios 插件命令: npm install axios 第二步,mock 模拟后端接口 在根目录创建 mock 文件夹,在文件夹中…

深入浅出 Python 网络爬虫:从零开始构建你的数据采集工具

在大数据时代,网络爬虫作为一种数据采集技术,已经成为开发者和数据分析师不可或缺的工具。Python 凭借其强大的生态和简单易用的语言特点,在爬虫领域大放异彩。本文将带你从零开始,逐步构建一个 Python 网络爬虫,解决实…

Sqoop的安装和配置,Sqoop的数据导入导出,MySQL对hdfs数据的操作

sqoop的安装基础是hive和mysql,没有安装好的同学建议去看一看博主的这一篇文章 Hive的部署,远程模式搭建,centos换源,linux上下载mysql。_hive-4.0.1-CSDN博客 好的那么接下来我们开始表演,由于hive是当时在hadoop03上…

git clone超大仓库时报错:fatal: early EOF

环境版本: 系统:Ubuntu git版本:version 2.43.0 在执行git clone命令时报错,信息如下: 系统:Win10 git版本:version 2.47.0 解决办法1: 1、关闭压缩: git conf…