AMSBound is a variant of the AMSGrad stochastic optimizer which is designed to be more robust to extreme learning rates. Dynamic bounds are employed on learning rates, where the lower and upper bound are initialized as zero and infinity respectively, and they both smoothly converge to a constant final step size. AMSBound can be regarded as an adaptive method at the beginning of training, and it gradually and smoothly transforms to SGD (or with momentum) as time step increases.
g_t=∇f_t(x_t)
m_t=β_1tm_t−1+(1−β_1t)g_t
v_t=β_2v_t−1+(1−β_2)g_t2
v^_t=max(v^_t−1,v_t) and V_t=diag(v^_t)
η=Clip(α/V_t,η_l(t),η_u(t)) and η_t=η/t
x_t+1=Π_F,diag(η_t−1)(x_t−η_t⊙m_t)
Where α is the initial step size, and ηl and ηu are the lower and upper bound functions respectively.