热门标签 | HotTags
当前位置:  开发笔记 > 人工智能 > 正文

UserWarning:Detectedcallof`lrscheduler.step()`before`optimizer.step()`.

一、完成的错误信息UserWarning:Detectedcalloflrscheduler.step()beforeoptimizer.step().InPyTorch1.1.0

一、完成的错误信息

UserWarning: Detected call of lr scheduler.step() before optimizer.step(). In PyTorch 1.1.0 and later, you should call them in the opposite order: optimizer.step() before lr scheduler.step(). Failure to do this will result in PyTorch skipping the first value of the learning rate schedule.

在' optimizer.step() '之前检测到' lr scheduler.step() '的调用。在PyTorch 1.1.0及以后版本中,你应该以相反的顺序调用它们:' optimizer.step() '在' lr scheduler.step() '之前。如果做不到这一点,将导致PyTorch跳过学习速率计划的第一个值。


二、处理方式

  • 调节scheduler.step()的位置,将其放入整个epoch的最后

  • 一般是在训练集这个文件里,train_me.py

image



推荐阅读
author-avatar
小天赐儿_492
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有