[Theoretical Insight] How ReLU Activation Shapes Implicit Bias in High-Dimensional Neural Regression
How Does the ReLU Activation Affect the Implicit Bias of Gradient Descent on High-dimensional Neural Network Regression?
This paper provides a rigorous characterization of the implicit bias of Gradient Descent (GD) for shallow ReLU neural networks trained with squared loss in high-dimensional settings. It proves that the GD limit approximates the minimum-ℓ2-norm solution with a gap of Θ(√n/d), where n is the number of samples and d is the dimension.
TL;DR
Why does Gradient Descent (GD) find solutions that generalize well even without explicit regularization? This paper tackles this "Implicit Bias" mystery for one-hidden-layer ReLU networks. By moving into the high-dimensional regime (), the authors prove that GD-trained ReLU models converge to solutions remarkably close—but not exactly equal—to the minimum-ℓ2-norm solution, with a quantifiable proximity gap of .
Positioning the Work: Beyond the Worst-Case
In the world of linear regression, GD famously converges to the minimum-norm interpolant. But for ReLU networks, the landscape is a mess of non-convexity. Previous research hit two extremes:
- The Pessimistic View: Vardi & Shamir (2021) showed that in the worst case, implicit bias doesn't even exist—GD can go anywhere.
- The Idealized View: If data is perfectly orthogonal, GD finds the minimum-norm solution (Boursier et al., 2022).
This paper provides the "Missing Link": Real-world high-dimensional data is near-orthogonal. By leveraging high-dimensional concentration, the authors show that the non-convexity of ReLU essentially "freezes" into a manageable state.
The "Primal-Dual" Intuition
The researchers didn't just track the weights (). They introduced a primal-dual representation:
- Primal (): The model's predictions on the training data.
- Dual (): The coefficients representing weights in the span of the data.
In a ReLU network, the sign of determines if a neuron is "active." The paper's mathematical breakthrough involves showing that in high dimensions, the Activation Pattern stabilizes almost immediately.
Visualizing the Transition
The logic is captured in a transition diagram. Once an example's prediction aligns with its label sign, it stays active (Primal stability). Conversely, if a dual variable becomes sufficiently negative, the ReLU neuron "turns off" for that example and stays off (Dual stability).

Methodology: The Geometry of Near-Orthogonality
Why does high dimensionality simplify things? The authors use Random Matrix Theory (specifically properties of the Gram Matrix ) to show that concentrates around .
- Physical Intuition: In high dimensions, every data point is nearly perpendicular to every other point. This "weak interaction" means that when GD updates the weight to fit point A, it barely disturbs the fit for point B.
Key Results: The Proximity Bound
The paper's "crown jewel" is the characterization of the distance between the GD limit () and the minimum-norm solution ().
Theorem Preview:
This tells us that as , the distance goes to zero. However, the solutions are not identical. The "memory" of the initialization and the specific path GD takes to suppress negative labels creates a persistent, albeit small, discrepancy.
Table 1: Contextualizing ReLU model results against linear baselines.
Critical Analysis: What’s the Catch?
While the results are elegant, two limitations remain:
- Initialization Sensitivity: The proof relies on "small initialization" or specific "disjoint" patterns for many neurons (). If you initialize with large weights, the activation pattern might jump around too much for this analysis to hold.
- The "Moderate" Dimension Problem: When is only slightly larger than , the "near-orthogonality" breaks down. Simulation results in the Appendix show that in these cases, GD does an "example selection" process that is highly dependent on initialization—making it much harder to predict the final bias.
Future Outlook
This work shifts the focus of Deep Learning theory from "Global Landscapes" to "Local Stability." It suggests that overparameterization isn't just about capacity; it's about creating a geometric environment where optimization becomes simpler and more predictable. The challenge now is extending this to deep networks where "feature learning" creates dependencies that might break the near-orthogonality we rely on here.
