REVIEW 3 major objections 4 minor 8 references
Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization
T0 review · 3 major / 4 minor · reviewed 2026-08-03 · deepseek-v4-flash
Pith's one-line read The paper claims that in classification, generalization is best at an intermediate feature learning strength because too strong feature learning over-aligns the learned predictor to a noisy empirical class mean, while too weak feature learn
desk verdict The empirical optimal-FLS story is solid and worth taking seriously, but the main theorem rests on an orthogonality assumption that the paper's own Gaussian-mixture validation violates, so the advertised proof of the trade-off doesn't cover the regime where it is tested. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the effective predictor ŵ_α(t) — the class-wise sum v_j w_j of the first-layer neurons that have aligned to the positive class after the alignment phase — and its angular alignment Ψ(t) to the empirical class mean x+/||x+||. The α-dependence of Ψ at the stopping time tη,α (Lemmas 5.2 and 5.4) defines the cone H(α) of reachable normalized predictors; Theorem 5.6 then decomposes the excess error into the over-alignment gap OA(α) and the over-fitting gap OF(α) and shows they trade off. The two-phase dynamics (neuron alignment followed by margin maximization) is the mechanism that makes Ψ(α) nearly frozen after the alignment phase, so the optimal FLS is already determ
What would settle it
Train a two-layer ReLU net on a Gaussian mixture with known signal s+, fixed noise σ, and small n; measure the angular alignment Ψ(tη,α) of the effective predictor to the empirical class mean and the test error at the stopping time. The decomposition predicts the over-alignment gap Φ(−v*^T s+/σ)−Φ(−1/σ) should account for most of the error increase at small α. If instead the test error decreases monotonically as α→0 when n is small (or if the optimal α does not shift toward larger α as the empirical mean deviates more from s+), the over-alignment mechanism is falsified.
Extended reading notes
Core claim
The paper's central claim is that an optimal feature learning strength exists because the two failure modes pull in opposite directions. In the finite-sample, finite-time setting (training stopped when the training risk reaches a target η), the learned predictor's direction after training is confined to a circular cone H(α) around the empirical class mean x+/||x+||, and the width of that cone shrinks as the initialization scale α shrinks (equivalently, as FLS grows). The excess error over the Bayes classifier splits exactly into OA(α), the error of the best predictor inside that cone versus the signal direction s+, and OF(α), the error of the actually learned predictor versus the cone's best
Load-bearing premise
The whole trade-off rests on Assumption 4.1 (orthogonal separability of the training set): every pair of training samples from different classes must have normalized inner product at least λ>0; the paper notes this does not hold for general datasets, and without it the two-phase dynamics and the alignment point x+/||x+|| that define OA and OF are not guaranteed.
Editorial extensions
If this is right
- If the claim is right, FLS is a first-class generalization hyperparameter, not a compute-only trade-off: fixing the learning rate and tuning only the output multiplier can recover several percent test accuracy (about 6% on ResNet50/CIFAR-100 in the paper's sweeps).
- The gap between optimal and default FLS widens as the intrinsic dimensionality of the data grows, so the payoff of FLS tuning increases exactly for the tasks that are hardest.
- At matched training risk, a larger FLS does not monotonically improve generalization: the paper's bound predicts a U-shaped excess-error curve, and its numerical experiments confirm OA+OF is U-shaped in α.
- The analysis applies at early stopping (target training loss η), not only at the asymptotic max-margin limit, so the conclusions transfer to the training budgets used in practice.
Reading between the lines
- The paper's mechanism suggests a transferable design rule: since over-alignment is driven by the deviation between the empirical class mean and the true signal, any data-augmentation or regularizer that shrinks that deviation (e.g., label smoothing, mixup) should shift the optimal FLS toward stronger feature learning; this is a testable prediction the paper does not state.
- By the same logic, temperature scaling in softmax-based classifiers and logit scaling in distillation are FLS dials, so the over-alignment/over-fitting trade-off could explain known temperature-sensitivity results in those settings.
- A natural extension would be per-class or adaptive alignment penalties that widen H(α) where the empirical mean is unreliable, which might outperform a single global α; the paper's decomposition gives the objective such a scheme would optimize.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies how feature learning strength (FLS), controlled by output scaling or initialization scale, affects generalization in classification. Empirically, on CIFAR-10/100 and BigGAN-generated datasets with VGG/ResNet architectures, the authors observe that an intermediate FLS outperforms both very weak and very strong feature learning. Theoretically, they analyze gradient flow for a two-layer ReLU network on a binary Gaussian mixture, and prove an upper bound (Theorem 5.6) on the excess population error. The bound decomposes into an over-alignment term OA(α), which is large when the effective predictor is forced into too narrow a cone around the empirical class mean, and an over-fitting term OF(α), which grows when the predictor deviates from the best predictor in that cone. They argue that this trade-off yields an optimal FLS.
Significance. If the theoretical result is correct, it directly challenges the common intuition that stronger feature learning always improves generalization, and it provides a first principled explanation of an optimal FLS under finite-time training. The empirical study is broad and consistent across architectures and datasets, and the proposed OA/OF decomposition is conceptually appealing. The theory is parameter-free in the sense that no constants are fitted to data. However, the central theorem currently applies to orthogonally separable training sets, and the paper's own Gaussian-mixture validation does not satisfy that condition; as the stress-test note correctly observes, this is a load-bearing mismatch rather than a mere scope limitation. The paper also relies on an informal monotonicity argument for the OF term. These issues can likely be addressed by re-scoping the theory or adding a rigorous treatment, but the current version does not fully establish the claimed Gaussian-mixture trade-off.
major comments (3)
- [§4.2, Assumption 4.1; Theorem 5.6]
- [§5.2, Lemma 5.4 and Eq. (22)]
- [§5.3, Theorem 5.6 assumption of ∥ŵα(tη,α)∥≤1]
minor comments (4)
- [General] There are several typos: 'probablity' in Theorem 5.6, 'is is neither' in Section 4.1, and 'approximated by' in Section 4.1. Also, the name 'Orthogonal separability' for a lower bound on cosine similarity is potentially misleading; it is not orthogonality but a margin condition.
- [Figure 2 and 3] Blank grids in the heatmaps remove configurations that fail to reach 99% training accuracy for at least one seed. This is a sensible filtering, but it means the empirical claim 'larger FLS hurts generalization' is made only among fitting configurations. Please state this more prominently and consider reporting the number of non-fitting seeds, since non-fitting large-FLS configurations are exactly the ones excluded.
- [§A.4] The sentence 'Note that we do not restrict λ here in order to reflect a realistic setup' should be reconciled with the theorem's assumptions. As it stands, Figure 4 is an empirical illustration, not a verification of Theorem 5.6; the paper should say so explicitly.
- [Notation] In Theorem 5.6, the vector s appears without a subscript (e.g., 's' in the OF term and in the denominator of Φ terms). Since the data model uses s+ and s−, please clarify that s=s+ in this context. Also define x_min before Lemma 5.4 if it is not already clear.
Circularity Check
No significant circularity: the OA/OF decomposition is an identity, but the trade-off's content comes from external dynamics and explicit geometry, not from fitted inputs or self-citation.
full rationale
The central decomposition in Eq. (24) is an exact identity: for any predictor wα and any set H(α) containing wα, the excess error splits into inf_H E − E* and E(wα) − inf_H E. Since H(α) in Eq. (25) is defined as the cone of directions whose alignment is at least Ψ(tη,α), and Ψ(tη,α) is by definition the alignment of wα, the learned predictor lies in H(α) by construction. This makes the bookkeeping identity tautological. However, the substantive content of the paper is not circular: the monotonicity of Ψ(tη,α) in α is derived from the two-phase dynamics imported from Min et al. (2024) (Lemmas 5.1, 5.2, 5.4), an external source, and the geometric effect of the cone on Gaussian-mixture error is computed explicitly via Lemma D.4 and the closed form of v*. The over-alignment term decreasing in α is a formal consequence of the cone growing with α, but that growth is itself a derived dynamical fact. The over-fitting term is bounded using standard Rademacher complexity, the stopping-time threshold η, and the constant c(σ,d); no parameter is fitted to data and no target quantity is inserted into the bound to force the U-shape. The numerical Figure 4 computes the exact decomposition from trained models, so the U-shape is not manufactured by construction. The only self-citation, Yeom et al. (2025), appears in a related-work list about initialization controls and is not load-bearing for the theorem. The paper openly acknowledges that Assumption 4.1 (orthogonal separability) does not hold for general datasets and that the numerical validation does not restrict λ (Section A.4); this is a correctness/restrictiveness limitation, not a circular step, because the theorem is explicitly conditional on that assumption. No circular step meeting the required evidence standard was found.
Assumptions & free parameters
assumptions (5)
- domain assumption Orthogonal separability (Assumption 4.1): all distinct training pairs from different classes have cosine similarity ≥ λ > 0.
- standard math Two-phase dynamics of two-layer ReLU nets under small initialization (Lemmas 5.1, D.3 from Min et al. 2024).
- domain assumption Gaussian mixture data model (Eq. 6) with κ=1 and s+ = -s-.
- ad hoc to paper Small-norm condition ∥ŵα(tη,α)∥ ≤ 1 in Theorem 5.6.
- standard math Balancedness and sign preservation from initialization (Lemma D.1).
Cite this review
Pith. "Pith review of Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization." pith.science (2026). https://pith.science/paper/JLB7G6CI
@misc{pith2026260200827,
author = {Pith},
title = {Pith review of: Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization},
year = {2026},
howpublished = {\url{https://pith.science/paper/JLB7G6CI}},
note = {Machine review of arXiv:2602.00827}
}
abstract
Feature learning strength (FLS), i.e., the inverse of the effective output scaling of a model, plays a critical role in shaping the optimization dynamics of neural nets. While its impact has been extensively studied under the asymptotic regimes -- both in training time and FLS -- existing theory offers limited insight into how FLS affects generalization in practical settings, such as when training is stopped upon reaching a target training risk. In this work, we investigate the impact of FLS on generalization in deep networks under such practical conditions. Through empirical studies, we first uncover the emergence of an $\textit{optimal FLS}$ -- neither too small nor too large -- that yields substantial generalization gains. This finding runs counter to the prevailing intuition that stronger feature learning universally improves generalization. To explain this phenomenon, we develop a theoretical analysis of gradient flow dynamics in two-layer ReLU nets trained with logistic loss, where FLS is controlled via initialization scale. Our main theoretical result establishes the existence of an optimal FLS arising from a trade-off between two competing effects: An excessively large FLS induces an $\textit{over-alignment}$ phenomenon that degrades generalization, while an overly small FLS leads to $\textit{over-fitting}$.
Figures
Figures from the paper (14 more)
Reference graph
Works this paper leans on
-
[1]
Then, by Min et al. (2024, Lemma 10), we have d dt ψj(t)− 1−ψ 2 j (t) ∥x+∥ ≤2nx max max i |f(x i;W(t),v(t))|.(39) This yields d dt ψj(t)≥ 1−ψ 2 j (t) ∥x+∥ −2nxmax max i |f(x i;W(t),v(t))|(40) ≥ 1−ψ 2 j (t) ∥x+∥ −να∥x+∥,(41) =∥x +∥ 1−να−ψ 2 j (t) ,(42) where Equation (41) is due to Lemma D.3. Now, we consider two cases: •Case 1.We haveψ j(t)< √1−ναfor allt...
2024
-
[2]
(2024, Appendix D.2), andβ:= (λx min)2/(32xmax)
(75) ≤x maxn (t2 −t α) ˆL(tα) + 1 β log ˆL(t2) η ! .(76) Here, Equation (74) is due to monotonic decreasing property of the training risk and the results from Min et al. (2024, Appendix D.2), andβ:= (λx min)2/(32xmax). 21 Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization C.4. Proof of Theorem 5.6 For the proof, we wil...
2024
-
[3]
S., Lucchi, A., Pascanu, R., et al
Masarczyk, W., Ostaszewski, M., Cheng, T. S., Lucchi, A., Pascanu, R., et al. Unpacking softmax: How temperature drives representation collapse, compression, and general- ization.arXiv preprint arXiv:2506.01562,
-
[5]
U-shape,
edim=32edim=64edim=128 Figure 5.Example images from the BigGAN-generated datasets.As the effective dimensionality (i.e.,edim) of the input increases, BigGAN produces more diverse images, thereby making the task more difficult. 12 Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization A.2. Experiments on CIFARs In this subs...
-
[7]
(2022).)sign(v j(t)) = sign(vj(0))
•(Sign preservation, from Boursier et al. (2022).)sign(v j(t)) = sign(vj(0)). Proof.See each paper for the proof. Lemma D.2.Letϕ(t)be a differentiable function satisfying ˙ϕ(t)≥b c2 −ϕ 2(t) for someb, c >0. Then, we have: d dt arctanh (ϕ(t)/c)≥bc.(127) Proof.First, note that the derivative of thearctanh(x)is1/(1−x 2). Then, by the chain rule, d dt arctanh...
2022
-
[8]
AUXILIARYLEMMATA Before start, we define Π∥ to be a orthogonal projection onto s and Π⊥ to be the orthogonal projection onto its complement
29 Over-Alignment vs Over-Fitting: The Role of Feature Learning Strength in Generalization E.1.1. AUXILIARYLEMMATA Before start, we define Π∥ to be a orthogonal projection onto s and Π⊥ to be the orthogonal projection onto its complement. Next, from the auxiliary lemmata, let us define An,δ := s max{0,(d−1)−2 p (d−1) log(1/δ)} n , B n,δ := √ d+ p 2 log(1/...
2000
-
[2018]
Jacot, A., Ged, F., S ¸ims ¸ek, B., Hongler, C., and Gabriel, F. Saddle-to-saddle dynamics in deep linear networks: Small initialization training, symmetry, and sparsity.arXiv preprint arXiv:2106.15933,
-
[2020]
Gradient de- scent quantizes relu network features.arXiv preprint arXiv:1803.08367,
Maennel, H., Bousquet, O., and Gelly, S. Gradient de- scent quantizes relu network features.arXiv preprint arXiv:1803.08367,
Reviewed August 3, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.