【问题标题】:What is the default learningRate and decay of the adam optimizer亚当优化器的默认学习率和衰减是多少 【发布时间】:2018-04-22 09:46:24 【问题描述】: 根据the documentation,learningRate 在 adam 优化器中是可选的。 如果未设置,默认 learningRate 是多少? 它是根据变量值动态计算的吗? 【问题讨论】: Tensorflow: Confusion regarding the adam optimizer的可能重复 标签: javascript tensorflow.js 【解决方案1】: 正如您在链接到doc page 的source code 中看到的,默认值为(当前): learningRate = 0.001 beta1 = 0.9 beta2 = 0.999 【讨论】: