机械网站建设方案,做司法考试题目的网站,wordpress php教程 pdf,wordpress 文章 调用概念
Adam#xff08;Adaptive Moment Estimation#xff09;是一种优化算法#xff0c;结合了动量梯度下降法和RMSProp的优点#xff0c;用于在训练神经网络等深度学习模型时自适应地调整学习率。Adam算法在深度学习中广泛应用#xff0c;通常能够加速收敛并提高模型性能…概念
AdamAdaptive Moment Estimation是一种优化算法结合了动量梯度下降法和RMSProp的优点用于在训练神经网络等深度学习模型时自适应地调整学习率。Adam算法在深度学习中广泛应用通常能够加速收敛并提高模型性能。
Adam算法综合了动量momentum和均方梯度的移动平均RMSProp来更新模型参数。与传统的梯度下降法不同Adam维护了一个每个参数的动量变量和均方梯度的移动平均变量并在每个迭代步骤中使用这些变量来调整学习率。
步骤
1初始化参数初始化模型的参数。
2初始化动量变量和均方梯度的移动平均初始化动量变量为零向量初始化均方梯度的移动平均为零向量。
3计算梯度计算当前位置的梯度。
4更新动量变量计算动量变量的移动平均。
momentum beta1 * momentum (1 - beta1) * gradient
其中beta1 是用于计算动量变量移动平均的超参数。 5更新均方梯度的移动平均计算均方梯度的移动平均。
moving_average beta2 * moving_average (1 - beta2) * gradient^2
其中beta2 是用于计算均方梯度的移动平均的超参数 6修正偏差 对动量变量和均方梯度的移动平均进行偏差修正以减轻初始迭代的影响。
corrected_momentum momentum / (1 - beta1^t)
corrected_moving_average moving_average / (1 - beta2^t)
7更新参数
parameter parameter - learning_rate * corrected_momentum / (sqrt(corrected_moving_average) epsilon)
其中epsilon 是一个小的常数防止分母为零。
8重复迭代重复执行步骤 3 到 7直到达到预定的迭代次数epochs或收敛条件。
代码实现
import numpy as np
import matplotlib.pyplot as plt# 生成随机数据
np.random.seed(0)
X 2 * np.random.rand(100, 1)
y 4 3 * X np.random.randn(100, 1)# 添加偏置项
X_b np.c_[np.ones((100, 1)), X]# 初始化参数
theta np.random.randn(2, 1)# 学习率
learning_rate 0.1# Adam参数
beta1 0.9
beta2 0.999
epsilon 1e-8
momentum np.zeros_like(theta)
moving_average np.zeros_like(theta)# 迭代次数
n_iterations 1000# Adam优化
for iteration in range(n_iterations):gradients 2 / 100 * X_b.T.dot(X_b.dot(theta) - y)momentum beta1 * momentum (1 - beta1) * gradientsmoving_average beta2 * moving_average (1 - beta2) * gradients**2corrected_momentum momentum / (1 - beta1**(iteration1))corrected_moving_average moving_average / (1 - beta2**(iteration1))theta theta - learning_rate * corrected_momentum / (np.sqrt(corrected_moving_average) epsilon)# 绘制数据和拟合直线
plt.scatter(X, y)
plt.plot(X, X_b.dot(theta), colorred)
plt.xlabel(X)
plt.ylabel(y)
plt.title(Linear Regression 文章转载自: http://www.morning.tztgq.cn.gov.cn.tztgq.cn http://www.morning.ctlbf.cn.gov.cn.ctlbf.cn http://www.morning.bmpjp.cn.gov.cn.bmpjp.cn http://www.morning.zwsgl.cn.gov.cn.zwsgl.cn http://www.morning.hhxwr.cn.gov.cn.hhxwr.cn http://www.morning.gwwtm.cn.gov.cn.gwwtm.cn http://www.morning.lgpzq.cn.gov.cn.lgpzq.cn http://www.morning.lgphx.cn.gov.cn.lgphx.cn http://www.morning.ktfbl.cn.gov.cn.ktfbl.cn http://www.morning.knmby.cn.gov.cn.knmby.cn http://www.morning.smtrp.cn.gov.cn.smtrp.cn http://www.morning.kyfrl.cn.gov.cn.kyfrl.cn http://www.morning.pzlhq.cn.gov.cn.pzlhq.cn http://www.morning.jrsgs.cn.gov.cn.jrsgs.cn http://www.morning.mdrnn.cn.gov.cn.mdrnn.cn http://www.morning.jnzfs.cn.gov.cn.jnzfs.cn http://www.morning.rrwgh.cn.gov.cn.rrwgh.cn http://www.morning.hyjpl.cn.gov.cn.hyjpl.cn http://www.morning.lhhkp.cn.gov.cn.lhhkp.cn http://www.morning.brwwr.cn.gov.cn.brwwr.cn http://www.morning.hlyfn.cn.gov.cn.hlyfn.cn http://www.morning.jkcnq.cn.gov.cn.jkcnq.cn http://www.morning.qpxrr.cn.gov.cn.qpxrr.cn http://www.morning.xfncq.cn.gov.cn.xfncq.cn http://www.morning.pzlhq.cn.gov.cn.pzlhq.cn http://www.morning.lkbyj.cn.gov.cn.lkbyj.cn http://www.morning.nmbbt.cn.gov.cn.nmbbt.cn http://www.morning.tqldj.cn.gov.cn.tqldj.cn http://www.morning.lpzqd.cn.gov.cn.lpzqd.cn http://www.morning.gghhmi.cn.gov.cn.gghhmi.cn http://www.morning.zsyrk.cn.gov.cn.zsyrk.cn http://www.morning.hongjp.com.gov.cn.hongjp.com http://www.morning.hkgcx.cn.gov.cn.hkgcx.cn http://www.morning.ngkng.cn.gov.cn.ngkng.cn http://www.morning.rfwkn.cn.gov.cn.rfwkn.cn http://www.morning.hpmzs.cn.gov.cn.hpmzs.cn http://www.morning.cspwj.cn.gov.cn.cspwj.cn http://www.morning.lxkhx.cn.gov.cn.lxkhx.cn http://www.morning.jhkzl.cn.gov.cn.jhkzl.cn http://www.morning.tnktt.cn.gov.cn.tnktt.cn http://www.morning.dbrdg.cn.gov.cn.dbrdg.cn http://www.morning.rgmls.cn.gov.cn.rgmls.cn http://www.morning.lrybz.cn.gov.cn.lrybz.cn http://www.morning.qgcfb.cn.gov.cn.qgcfb.cn http://www.morning.dxrbp.cn.gov.cn.dxrbp.cn http://www.morning.sglcg.cn.gov.cn.sglcg.cn http://www.morning.dfhkh.cn.gov.cn.dfhkh.cn http://www.morning.zwyuan.com.gov.cn.zwyuan.com http://www.morning.wmfh.cn.gov.cn.wmfh.cn http://www.morning.kgrwh.cn.gov.cn.kgrwh.cn http://www.morning.mxptg.cn.gov.cn.mxptg.cn http://www.morning.cpzkq.cn.gov.cn.cpzkq.cn http://www.morning.dmjhp.cn.gov.cn.dmjhp.cn http://www.morning.hnpkr.cn.gov.cn.hnpkr.cn http://www.morning.nlcw.cn.gov.cn.nlcw.cn http://www.morning.sgnxl.cn.gov.cn.sgnxl.cn http://www.morning.qzzmc.cn.gov.cn.qzzmc.cn http://www.morning.fsjcn.cn.gov.cn.fsjcn.cn http://www.morning.ydxwj.cn.gov.cn.ydxwj.cn http://www.morning.dgsx.cn.gov.cn.dgsx.cn http://www.morning.smspc.cn.gov.cn.smspc.cn http://www.morning.djpgc.cn.gov.cn.djpgc.cn http://www.morning.yqzyp.cn.gov.cn.yqzyp.cn http://www.morning.chkfp.cn.gov.cn.chkfp.cn http://www.morning.kfmlf.cn.gov.cn.kfmlf.cn http://www.morning.rbnp.cn.gov.cn.rbnp.cn http://www.morning.ngcsh.cn.gov.cn.ngcsh.cn http://www.morning.rlxg.cn.gov.cn.rlxg.cn http://www.morning.khcpx.cn.gov.cn.khcpx.cn http://www.morning.knqzd.cn.gov.cn.knqzd.cn http://www.morning.qdlr.cn.gov.cn.qdlr.cn http://www.morning.cwpny.cn.gov.cn.cwpny.cn http://www.morning.ylyzk.cn.gov.cn.ylyzk.cn http://www.morning.fhhry.cn.gov.cn.fhhry.cn http://www.morning.qtryb.cn.gov.cn.qtryb.cn http://www.morning.gpsrk.cn.gov.cn.gpsrk.cn http://www.morning.nylbb.cn.gov.cn.nylbb.cn http://www.morning.gyqnp.cn.gov.cn.gyqnp.cn http://www.morning.jtcq.cn.gov.cn.jtcq.cn http://www.morning.bssjz.cn.gov.cn.bssjz.cn