Neural Tangent Kernel: Infinite-Width Networks as Kernel Methods
Setup
The Neural Tangent Kernel (NTK) framework (Jacot, Gabriel, Hongler, 2018) provides a striking analytical result: in the infinite-width limit, training a neural network with gradient descent is equivalent to kernel regression with a fixed kernel — the NTK.
For a network $f(x; \theta)$, the NTK is
\[K_\text{NTK}(x, x') = \mathbb{E}_\theta\!\left[\langle \nabla_\theta f(x; \theta), \nabla_\theta f(x'; \theta) \rangle\right]\]In the infinite-width limit and with appropriate parameterization:
- The NTK at initialization concentrates around its expectation
- The NTK does not change during training
- Training dynamics become linear in the parameters
Implications
- Convergence: gradient descent provably converges to a global minimum at a rate determined by NTK eigenvalues
- Generalization: the bias of NTK regression characterizes which functions wide networks prefer — a form of implicit bias
- Lazy training: the regime where NTK applies is sometimes called “lazy” because parameters move infinitesimally relative to their initial values
Limitations
NTK is exact only in the infinite-width limit; finite networks deviate, and crucially, the NTK assumption misses feature learning. Real networks update their internal representations during training in ways that lazy-regime theory cannot capture — which is precisely what makes deep learning powerful.
This has spawned active research on mean-field and feature-learning regimes that go beyond NTK.
Further reading
- CMU ML Blog — Ultra-Wide Deep Nets and NTK
- Jacot, Gabriel, Hongler (2018), Neural Tangent Kernel: Convergence and Generalization in Neural Networks
Enjoy Reading This Article?
Here are some more articles you might like to read next: