当前位置:   article > 正文

深度学习lr scheduler 介绍_scheduler深度学习

scheduler深度学习

lr_scheduler在深度学习模型中经常遇到,虽粗通其理,然未解其中奥秘。

简单整理,冀假以时日,略加参悟。

1.WarmupLinearScheduler

代码参考自https://github.com/huggingface/transformers/blob/main/src/transformers/optimization.py
get_linear_schedule_with_warmup部分。

import matplotlib.pyplot as plt
t_total = 10000
warmup_steps = 1000
lr = 1e-4

def lr_lambda(step):
    if step < warmup_steps:
        return float(step) / float(max(1, warmup_steps))
    return max(0.0, float(t_total - step) / float(
        max(1.0, t_total - warmup_steps)))
        
lrs = []
for step in range(t_total):
    lrs.append(lr*lr_lambda(step))
plt.plot(lrs)
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

在这里插入图片描述

参考文献

[1]https://github.com/huggingface/transformers/blob/main/src/transformers/optimization.py
[2] pytorch how-to-adjust-learning-rate

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/773830
推荐阅读
相关标签
  

闽ICP备14008679号