Statement
Assume token embeddings concentrate locally near a manifold (a local/stratified manifold hypothesis, not a single global smooth manifold), and that samples for a token are drawn with an ambient radial density , , that is strictly decreasing — high-frequency tokens concentrate at small around their idealized centroid , rare tokens remain more diffuse. Two coupled consequences follow:
Sampling-side (curvature attenuation). As radial concentration increases (a moment ratio ), the marginal directional distribution over tangent directions becomes approximately uniform, and the curvature-driven directional bias that would otherwise favor high-(Ricci- and extrinsic-)curvature directions vanishes from what is empirically observable — curvature information is suppressed, not enhanced, by frequency-driven concentration.
Gradient-side (tangent dominance). Decomposing a centered activation into tangent (, ) and normal (, ) components, the ratio of normal-to-tangent gradient magnitudes for any linear layer scales as : for small (frequency-concentrated tokens), weight updates along curvature-bearing normal directions are parametrically suppressed relative to tangent updates. This compounds through a feedback loop — tangent-aligned weight updates make forward activations more tangent-dominated, which biases future gradients further toward tangent directions — amplified by attention’s bilinear score expansion (the term dominates the cross-term and normal-normal term) and propagated depth-wise by residual connections, which copy normal components forward unamplified while incrementally reinforcing tangent ones.
Intuition
Most accounts of anisotropy point to a static cause — weight tying, likelihood maximization, embedding norm shrinkage — and describe a narrow cone as a finished fact about trained representations. This hypothesis instead offers a dynamical, geometric mechanism: high-frequency tokens are sampled so tightly around their “ideal” spot that the curvature of the underlying semantic manifold becomes statistically invisible, and because gradients scale with how far a sample wanders from that spot, the training signal itself inherits and amplifies this blindness — normal (curvature) directions are not just under-sampled, they are actively starved of gradient signal, and the starvation gets worse as training proceeds and tangent directions come to dominate forward activations.
Properties
- Two independent, complementary mechanisms. The sampling-side curvature-attenuation argument (Corollary 2.2 → Eq. 4) concerns what is statistically visible in a sample of activations; the gradient-side tangent-dominance argument (Proposition 2.3) concerns what training reinforces in the weights. Either could in principle hold without the other, but both point the same direction and are empirically tested together.
- Self-reinforcing, not static. Unlike accounts that treat anisotropy as a fixed property of an objective function, this hypothesis is explicitly a feedback loop: tangent bias in weights → more tangent-dominated activations → more tangent-biased future gradients — predicting anisotropy should emerge and compound over training, not appear instantaneously.
- Predicts anisotropy is imprinted early, not throughout training. Because the mechanism depends on a not-yet-converged, actively updating model, and prior work shows representations stabilize early, the hypothesis predicts the tangent bias — and hence anisotropy’s origin — is strongest in early training, with late training carrying it forward under smaller updates rather than originating it.
- Predicts weaker anisotropy where frequency concentration is weaker. Models whose training explicitly counteracts frequency skew (e.g. multilingual data-balancing) should show an attenuated, not absent, version of the same mechanism — a specific, falsifiable scaling prediction rather than a binary present/absent claim.
- Reframes anisotropy as possibly adaptive. Rather than treating a narrow cone purely as a pathology, the hypothesis is compatible with anisotropy functioning as an implicit dimensionality reduction — shifting an overparameterized model toward an effectively lower-dimensional, more generalizable regime — a normative reframing, not just a mechanistic one.
Exercises
Base
- Given and , and that gradient magnitude along a subspace scales with (Cauchy-Schwarz), reproduce the scaling of the normal-to-tangent gradient ratio in Eq. (11).
Solution
From and (Eqs. 7-8), the tangent-projected gradient norm scales as and the normal-projected one as . Their ratio is therefore — matching Eq. (11) exactly, since both scale with the same factor which cancels in the ratio.
- Two token types have concentration radii (type 1 is high-frequency, type 2 is low-frequency). Which type’s normal-direction (curvature) gradient signal is more suppressed relative to its own tangent signal?
Solution
Type 1 (high-frequency, small ): the ratio is smaller for smaller , so the high-frequency token’s normal-direction gradient is more suppressed relative to its tangent-direction gradient than the low-frequency token’s is. This is exactly the asymmetry the hypothesis needs: frequent tokens, precisely because they are tightly concentrated, get their curvature information most aggressively starved of gradient signal.
Middle
- Explain concretely why “tangent-aligned weight updates” causing “more tangent-dominated future activations” is a feedback loop and not merely a repeated application of the same one-time bias — i.e. why iterating the mechanism should make the bias worse over training steps, not just repeat it at constant strength.
Solution
A one-time bias would apply the same $O(t)$ suppression at every step if $t$ (the concentration radius) stayed fixed. But once weights become more tangent-aligned, forward activations depend more strongly on $v$ than $n$ (the update literally reshapes what downstream layers respond to), which means the *effective* signal carried by normal-direction variation shrinks further — not just the gradient's projection onto it. This shrinks the practical value of $t$'s normal component in subsequent passes, which by Eq. (11) *further* suppresses the normal-to-tangent gradient ratio at the next step. Each iteration doesn't just repeat the previous suppression — it operates on an already-more-tangent-dominated representation, so the suppression compounds rather than staying constant, which is precisely why the paper calls this a feedback loop rather than a fixed bias.- The paper reports that encoder models (EuroBERT), which explicitly balance training data across languages, show weaker tangent-alignment effects than decoder models. Using the hypothesis’s core mechanism, explain why data-balancing should have this effect without assuming anything about encoder-vs-decoder architecture per se.
Solution
Data-balancing across languages directly counteracts the natural frequency skew that drives radial concentration (assumption A3: $g(t)$ decreasing, concentrated at small $t$ for high-frequency tokens) — if no token class is allowed to dominate the corpus, no token class gets pinned as tightly to its centroid, so $g(t)$ is less peaked and the moment ratio $\eta_g$ stays farther from $0$. Since both the curvature-attenuation effect (Eq. 4) and the tangent-gradient-dominance effect (Eq. 11) are driven entirely through $t$ (equivalently through how concentrated $g(t)$ is), any training procedure that flattens the frequency distribution — regardless of whether the architecture is an encoder or a decoder — should proportionally weaken both effects. The encoder/decoder distinction in the paper's results is therefore best read as a *correlate* of typical training-data balancing practice, not a claim that architecture itself matters to the mechanism.Key papers
- Bernas, Jourdan, Poché & Hudelot (2026). Revisiting Anisotropy in Language Transformers: The Geometry of Learning Dynamics. arXiv:2604.08764 — origin of this hypothesis; see Gradient–Tangent Alignment Test for the empirical validation methodology.
- Robinson, Dean, et al. (2025a;b) — cited by Bernas et al. as the source of the local/stratified-manifold view of token space this hypothesis builds on (token subspaces failing global smooth-manifold and even fiber-bundle models); not yet a full paper entry in this corpus.
- Rudman & Eickhoff (2024) — origin of IsoScore*, the isotropy metric used in Gradient–Tangent Alignment Test‘s removal test; not yet a full paper entry in this corpus.