IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> Pytorch的自动微分 -> 正文阅读

[人工智能]Pytorch的自动微分

感谢:Pytorch深度学习实战
出版社:清华大学出版社

import numpy as np
import torch

Tensor的requires_grad属性设置为True时,Pytorch的torch.autograd会自动地追踪它的计算轨迹,当需要计算微分的时候,只需要对最终计算的tensor调用backward方法,中间所有的计算节点的微分就会被保存在grad属性。

a = torch.arange(9).view(3,3)
a.requires_grad
False
x = torch.rand(3,3,requires_grad  = True)
print('微分后的X\n:',x)
微分后的X
: tensor([[0.4568, 0.3014, 0.1629],
        [0.9983, 0.9308, 0.4588],
        [0.7727, 0.1441, 0.9768]], requires_grad=True)
w = torch.ones(3,3,requires_grad = True)
y = torch.sum(torch.mm(x,w))
print(y)
tensor(15.6081, grad_fn=<SumBackward0>)
# 反向更新x\w
print(y.backward)
print(y.grad)
print(x.grad)
print(w.grad)
<bound method Tensor.backward of tensor(15.6081, grad_fn=<SumBackward0>)>
None
tensor([[3., 3., 3.],
        [3., 3., 3.],
        [3., 3., 3.]])
tensor([[2.2278, 2.2278, 2.2278],
        [1.3763, 1.3763, 1.3763],
        [1.5986, 1.5986, 1.5986]])


D:\install_file\Anaconda3\envs\5tsp\lib\site-packages\torch\_tensor.py:1013: UserWarning: The .grad attribute of a Tensor that is not a leaf Tensor is being accessed. Its .grad attribute won't be populated during autograd.backward(). If you indeed want the .grad field to be populated for a non-leaf Tensor, use .retain_grad() on the non-leaf Tensor. If you access the non-leaf Tensor by mistake, make sure you access the leaf Tensor instead. See github.com/pytorch/pytorch/pull/30531 for more informations. (Triggered internally at  aten\src\ATen/core/TensorBody.h:417.)
  return self._grad
# Tensor.detach会将Tensor从计算图中剥离出去,不在计算他的微分,
x = torch.rand(3,3,requires_grad = True)
w = torch.rand(3,3,requires_grad = True)
print('x:',x)
print('w:',w)
yy = torch.mm(w,x)
detach_yy = yy.detach()
y = torch.mean(yy)
y.backward()
print('-'*60)
print(yy.grad)
print(detach_yy)
print(x.grad)
print(w.grad)

# with torch.no_grad():包括的代码段不会计算微分
print('-'*60)
y = torch.sum(torch.mm(w,x))
print(y.requires_grad)

with torch.no_grad():
    y = torch.sum(torch.mm(w,x))
    print(y.requires_grad)
x: tensor([[0.2699, 0.2150, 0.4124],
        [0.5506, 0.1069, 0.6992],
        [0.1359, 0.9054, 0.6022]], requires_grad=True)
w: tensor([[0.3951, 0.9469, 0.1590],
        [0.0279, 0.3368, 0.9199],
        [0.0966, 0.1213, 0.7982]], requires_grad=True)
------------------------------------------------------------
None
tensor([[0.6496, 0.3302, 0.9208],
        [0.3180, 0.8749, 0.8009],
        [0.2013, 0.7564, 0.6053]])
tensor([[0.0577, 0.0577, 0.0577],
        [0.1561, 0.1561, 0.1561],
        [0.2086, 0.2086, 0.2086]])
tensor([[0.0997, 0.1507, 0.1826],
        [0.0997, 0.1507, 0.1826],
        [0.0997, 0.1507, 0.1826]])
------------------------------------------------------------
True
False
  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:22:47  更:2022-04-01 23:23:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/9 0:29:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码