Overview

This note records the spectral reason two-layer ReLU networks behave like low-pass filters. The key point in Zhang, Zhao, Zhong, and Zhou is that the useful basis functions are not merely expressive; their Gram matrix is severely ill-conditioned, so finite precision and gradient flow both privilege low generalized Fourier modes (Zhang et al., 2023).

🏷️ Setup

The ReLU activation is

Two elementary identities drive most of the analysis:

and, in the distributional sense,

A two-layer ReLU network on a bounded domain has the form

The homogeneity lets one normalize the direction and treat as the location of the kink hyperplane. Thus the approximation problem is not only about the span of ridge functions; it is also about the numerical conditioning of that nonlocal basis.

Continuous feature operator

For an infinite-width model, write and

The adjoint feature map sends a parameter density to a function on . Its Gram operator is the integral operator on parameter space with kernel

☘️ One-Dimensional Gram Spectrum

In one dimension, take . After absorbing the affine part, a fixed-bias network is

As an approximation space, this is the same continuous piecewise-linear space generated by linear finite elements on the nodes . The important difference is the coordinate system. Hat functions are local and give a sparse, well-conditioned mass matrix. ReLU functions are nonlocal and highly correlated, so their Gram matrix is dense and badly conditioned.

The continuous Gram kernel is

For this can be written as

Let be the integral operator

Since , an eigenpair satisfies

with boundary conditions

Thus the ReLU Gram eigenfunctions are generalized Fourier modes: alternating cosine-like and sine-like oscillations at high index. Their eigenvalues obey

Same space, different numerics

The ReLU basis and the finite-element hat basis can span the same piecewise-linear space in one dimension, but solving for the coefficients is not numerically equivalent. The finite-element basis is local; the ReLU basis encodes the same function through cumulative, highly correlated ramps.

For quasi-evenly spaced biases, the discrete Gram matrix

has eigenvalues comparable to the rescaled continuous spectrum:

Consequently, the condition number grows at least polynomially:

and for exactly evenly spaced biases the sharper behavior is . For random biases sampled from a density bounded above and below, the same spectral scale persists with high probability, up to logarithmic factors in the condition-number bound.

πŸ”­ Radon Transform Viewpoint

The distributional identity explains why the higher-dimensional spectrum is tied to the Laplacian. For a single ridge function,

Therefore, for

we have formally

where is the adjoint Radon transform.

Radon identities

For suitable functions, the Radon transform satisfies

and Helgason’s inversion formula gives

Let be a parameter-space eigenfunction of the Gram operator with eigenvalue , and define its realized function

For odd , the paper derives

with an analogous formula involving for even . Weyl’s law then yields the asymptotic Gram spectrum

This is the precise version of the low-pass heuristic: high-index Gram eigenmodes correspond asymptotically to high-frequency Laplace modes, and their singular values are small.

πŸ’» Finite Precision Cutoff

The universal approximation theorem is an exact-real-arithmetic statement. Numerically, the least-square solution uses a pseudoinverse or regularized solve, so Gram eigenvalues below the roundoff or data-noise scale are discarded.

If denotes machine precision or noise level, the paper’s estimate implies that a two-layer ReLU network can stably recover only about

leading modes, no matter how wide the network becomes after the width passes the resolution threshold. Equivalently, the largest stable frequency in each coordinate direction is only about

Consequence for double precision

With double precision, the paper estimates the resolvable frequency per direction as roughly in dimension , in dimension , in dimension , and in dimension . The width can remove discretization error before this cutoff, but it cannot remove the finite-precision spectral cutoff.

This also clarifies a positive feature. The same low-pass behavior that suppresses oscillatory target components also suppresses high-frequency noise and reduces some overfitting sensitivity.

πŸ’‘ Training Dynamics

The same ill-conditioning appears in gradient flow. In one dimension, write

and train against by the population square loss on . The gradient flow is

Following the paper, introduce an auxiliary function by

Let be the -th generalized Fourier eigenfunction of the one-dimensional Gram kernel and write

The relation means that measures the error in mode , with two derivatives of smoothing. The paper proves lower bounds on how fast this coefficient can be reduced. Under bounded coefficients and equispaced initial biases, halving mode requires at least

time. Since a discrete method that tracks the gradient flow needs time step , this already implies at least numerical steps when the initial error in mode is nonzero. Under an additional bounded-variation assumption on and a scaling regime , the lower bound improves to

time, or at least numerical steps.

Adaptivity is slow in the hard modes

Moving the biases is supposed to make the representation adaptive. The gradient-flow bounds say that the high-frequency modes needed for this adaptivity are precisely the modes that move slowly. Fixed-width training can therefore inherit the low-pass bias even outside the strict NTK picture.

🧩 Rashomon Set Perspective

The paper also gives a probability-side explanation. Define the Rashomon set as the subset of network parameters whose error is below a chosen tolerance. For oscillatory targets, this set has small normalized measure. In one of the paper’s estimates, Hoeffding’s inequality gives an exponential upper bound of the form

where bounds the output weights and is a hyperplane-transform bound for the Poisson solution with . For high-frequency , this bound expresses the same practical message: randomly landing near a good shallow representation is unlikely, and training must search through a small target region.

πŸ“ Notes

  • The Laplacian/Radon calculation is the right continuum picture, but the paper’s main numerical lesson is about the Gram matrix. Expressivity alone does not decide what finite precision can recover.
  • In one dimension, ReLU and linear finite elements can represent the same piecewise-linear functions. The finite-element basis is a good coordinate system; the ReLU ramp basis is not.
  • Smoother activations can make the Gram spectrum decay even faster. ReLU is already biased against high frequencies, but analytic activations such as sigmoid or tanh can be more strongly biased in this least-square spectral sense.

πŸ”— See Also

  • on eigenvalue estimate of kernel --- The ReLU Gram spectrum gives a concrete kernel with polynomial eigenvalue decay, feeding directly into finite-sample condition-number estimates.
  • on improved NystrΓΆm bounds --- Random-feature and NTK Gram matrices are natural places to compare full kernels with low-rank sampled approximations.
  • on subspace spanned by trajectory --- The training-dynamics discussion here is another instance where optimization is constrained by the spectral subspace reached along the trajectory.
  • on β€œsum of squares” --- Ill-conditioned normal equations and pseudoinverse truncation are recurring numerical themes behind least-square representations.

πŸ“š References

🐻  Zhang, S., Zhao, H., Zhong, Y. & Zhou, H. 2023. Why Shallow Networks Struggle to Approximate and Learn High Frequencies.