Why it matters

Understanding convergence rate shapes hyperparameter tuning + expectations.

Advertisement

The architecture

Convex + L-smooth: O(1/k) with step 1/L.

Strongly convex: O((1-μ/L)^k) exponential.

GD convergence ratesConvex + smoothO(1/k)Strongly convexexponentialNon-convexstationary pointNesterov's accelerated gradient: O(1/k²) for convex
Convergence bounds.
Advertisement

How it works end to end

Nesterov acceleration: O(1/k²).

Non-convex: convergence to stationary point (grad = 0).

Stochastic gradient: variance affects convergence.

Adaptive methods (Adam): different theory.