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】optim 中的优化器以及 optimizer.step(closure) -> 正文阅读

[人工智能]【PyTorch】optim 中的优化器以及 optimizer.step(closure)

Constructing it.

To construct an Optimizer you have to give it an iterable containing the 
parameters (all should be Variable s) to optimize. Then, you can specify 
optimizer-specific options such as the learning rate, weight decay, etc.
If you need to move a model to GPU via .cuda(), please do so before 
constructing optimizers for it. Parameters of a model after .cuda() 
will be different objects with those before the call.
In general, you should make sure that optimized parameters live 
in consistent locations when optimizers are constructed and used.
  • 首先,构造优化器时需要给定待优化的参数,另外还有诸如学习率、权重衰减策略之类的参数;其次,如果模型需要 G P U \rm GPU GPU 加速,移动到 G P U \rm GPU GPU 上保存,那么 . c u d a ( ) \rm.cuda() .cuda() 方法的调用必须在 o p t i m . x x x ( ) \rm optim.xxx() optim.xxx() 构造优化器之前。

Taking an optimization step.

1: optimizer.step().

This is a simplified version supported by most optimizers. The function can be 
called once the gradients are computed using e.g. backward().
  • 在计算出损失函数并且反向传播 l o s s . b a c k w a r d ( ) \rm loss.backward() loss.backward() 后调用 o p t i m i z e r . s t e p ( ) . \rm optimizer.step(). optimizer.step().
for input, target in dataset:
    optimizer.zero_grad()
    output = model(input)
    loss = loss_fn(output, target)
    loss.backward()
    optimizer.step()

2: optimizer.step(closure).

Some optimization algorithms such as Conjugate Gradient and LBFGS need to
reevaluate the function multiple times, so you have to pass in a closure 
that allows them to recompute your model. The closure should clear the 
gradients, compute the loss, and return it.
  • 一些特殊的优化算法例如 C o n j u g a t e ? G r a d i e n t \rm Conjugate~Gradient Conjugate?Gradient 共轭梯度法以及 L B F G S \rm LBFGS LBFGS 需要多次评估函数,因此会给 o p t i m i z e r . s t e p ( ) \rm optimizer.step() optimizer.step() 传入一个函数 c l o s u r e \rm closure closure 作为参数,该函数中需要完成梯度清理、损失计算并返回损失值。另外在 P y T o r c h . o p t i m \rm PyTorch.optim PyTorch.optim 实现的优化器中,只有 L B F G S . s t e p ( c l o s u r e ) \rm LBFGS.step(closure) LBFGS.step(closure) 中是必须有参数的,其他优化器均为可选参数。
for input, target in dataset:
    def closure():
        optimizer.zero_grad()
        output = model(input)
        loss = loss_fn(output, target)
        loss.backward()
        return loss
    optimizer.step(closure)

RoitSky: 
When shall I use ‘optimizer.step(closure)’ instead of ‘optimizer.step()’ ?
I have read the PyTorch Docs, however i’m not aware of its description.

"Some optimization algorithms such as Conjugate Gradient and LBFGS need to reevaluate
the function multiple times, so you have to pass in a closure that allows them to 
recompute your model. The closure should clear the gradients, compute the loss, and 
return it."

What does ‘reevaluate the function multiple times’ mean ? What does the ‘function’ refer to ?
googlebot:
‘function’ is a callable that returns a differentiable loss (i.e. main 
nn.Module with attached loss function), these algorithms have an [inner] training loop 
inside optimizer.step, hence this ‘closure’ is mostly a boilerplate to have a loop 
turned inside out (i.e. a delegate allowing nested forward+backward+change_params 
iterations)
RoitSky:
But why PyTorch Docs emphasizes that ‘Some optimization algorithms such as Conjugate 
Gradient and LBFGS…’. When i create a SGD or an Adam optimizer, i just code in 
‘optimizer.step().
googlebot:
BFGS & co are batch (whole dataset) optimizers, they do multiple steps on same inputs. 
Though docs illustrate them with an outer loop (mini-batches), that’s a bit unusual 
use, I think. Anyway, the inner loop enabled by ‘closure’ does parameter search with 
inputs fixed, it is not a stochastic gradient loop you do with SGD or Adam.

Per-parameter options.

在这里插入图片描述

optim.SGD([
                {'params': model.base.parameters()},
                {'params': model.classifier.parameters(), 'lr': 1e-3}
            ], lr=1e-2, momentum=0.9)

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2021-08-14 14:01:52  更:2021-08-14 14:03:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/17 19:03:06-

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