MATH · IN · MODELS
structures / Hypotheses / Tangent-Aligned Anisotropy Hypothesis

Tangent-Aligned Anisotropy Hypothesis

CLAIMhypothesisadvancedhow it's classified →

Frequency-biased sampling concentrates high-frequency tokens near their idealized centroid, geometrically attenuating the visibility of local manifold curvature; this radial concentration induces a training-time gradient bias that preferentially amplifies directions tangent to the local data manifold over normal (curvature-bearing) directions, self-reinforcing through attention and residual connections — producing anisotropy as a byproduct of frequency-driven sampling and gradient dynamics, not merely a training-objective artifact.

Replicationcomputed from the corpus — never hand-assigned
1 paper2 architecture classes · one study1 domain3 model families · one study
Filled = two or more values reported by papers that share no author — replication. Outlined = two or more values, but all from a single study — breadth, not replication. Grey = a single value. Derived from paper authorship and each model's architecture class, domain and family; it updates itself when a paper is added.

Statement

Assume token embeddings concentrate locally near a C3C^3 manifold M\mathcal{M} (a local/stratified manifold hypothesis, not a single global smooth manifold), and that samples for a token are drawn with an ambient radial density g(t)g(t), t=yμt=\|y-\mu\|, that is strictly decreasing — high-frequency tokens concentrate at small tt around their idealized centroid μ\mu, rare tokens remain more diffuse. Two coupled consequences follow:

Sampling-side (curvature attenuation). As radial concentration increases (a moment ratio ηg0\eta_g \to 0), the marginal directional distribution p(u)p(u) over tangent directions uu 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 xc=v+nx_c=v+n into tangent (vTμMv\in T_\mu\mathcal{M}, v=t\|v\|=t) and normal (nNμMn\in N_\mu\mathcal{M}, n=O(t2)\|n\|=O(t^2)) components, the ratio of normal-to-tangent gradient magnitudes for any linear layer scales as O(t)O(t): for small tt (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 vMvv^\top M v term dominates the O(t3)O(t^3) cross-term and O(t4)O(t^4) 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

  1. Given v=t\|v\|=t and n=O(t2)\|n\|=O(t^2), and that gradient magnitude along a subspace scales with E[2]\sqrt{\mathbb{E}[\|\cdot\|^2]} (Cauchy-Schwarz), reproduce the O(t)O(t) scaling of the normal-to-tangent gradient ratio in Eq. (11).
Solution

From E[vv]=O(t2)\mathbb{E}[vv^\top]=O(t^2) and E[nn]=O(t4)\mathbb{E}[nn^\top]=O(t^4) (Eqs. 7-8), the tangent-projected gradient norm scales as E[v2]=O(t)\sqrt{\mathbb{E}[\|v\|^2]}=O(t) and the normal-projected one as E[n2]=O(t2)\sqrt{\mathbb{E}[\|n\|^2]}=O(t^2). Their ratio is therefore O(t2)/O(t)=O(t)O(t^2)/O(t) = O(t) — matching Eq. (11) exactly, since both scale with the same GrmsG_{\text{rms}} factor which cancels in the ratio.

  1. Two token types have concentration radii t1t2t_1 \ll t_2 (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 t1t_1): the ratio O(t)O(t) is smaller for smaller tt, 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

  1. 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.
  1. 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.

Found in (1 observation · 3 families)

EuroBERT

Revisiting Anisotropy in Language Transformers: The Geometry of Learning Dynamics (2026)measured

Anisotropy from frequency-blind sampling and self-reinforcing tangent gradients

Details

Bernas et al. give a two-part geometric account of anisotropy: they prove (Corollary 2.2) that as high-frequency tokens concentrate near their centroid, local-manifold curvature becomes statistically invisible [bernas-etal-2026] They prove (Proposition 2.3) the normal-to-tangent gradient magnitude ratio scales as O(t) in the concentration radius, so curvature-bearing normal updates are suppressed for high-frequency tokens, compounded by attention and residuals [bernas-etal-2026] Across the Pythia (160m/410m/1b/1.4b), SmolLM2 (360m/1.7b) and EuroBERT (210m/610m) suites, true gradients concentrate in an activation-derived tangent subspace far more than matched-rank random controls (energy ratios orders of magnitude above null) [bernas-etal-2026] The effect is strongest early in training and in early/middle layers, and weaker in EuroBERT, whose language-balanced training counteracts the frequency skew the mechanism depends on [bernas-etal-2026] The paper reframes anisotropy as a possibly adaptive implicit dimensionality reduction rather than a pure training pathology [bernas-etal-2026]

models: EuroBERT-210m, EuroBERT-610m · method: PCA, Gradient–Tangent Alignment Test

Pythia

Revisiting Anisotropy in Language Transformers: The Geometry of Learning Dynamics (2026)measured

Anisotropy from frequency-blind sampling and self-reinforcing tangent gradients

Details

Bernas et al. give a two-part geometric account of anisotropy: they prove (Corollary 2.2) that as high-frequency tokens concentrate near their centroid, local-manifold curvature becomes statistically invisible [bernas-etal-2026] They prove (Proposition 2.3) the normal-to-tangent gradient magnitude ratio scales as O(t) in the concentration radius, so curvature-bearing normal updates are suppressed for high-frequency tokens, compounded by attention and residuals [bernas-etal-2026] Across the Pythia (160m/410m/1b/1.4b), SmolLM2 (360m/1.7b) and EuroBERT (210m/610m) suites, true gradients concentrate in an activation-derived tangent subspace far more than matched-rank random controls (energy ratios orders of magnitude above null) [bernas-etal-2026] The effect is strongest early in training and in early/middle layers, and weaker in EuroBERT, whose language-balanced training counteracts the frequency skew the mechanism depends on [bernas-etal-2026] The paper reframes anisotropy as a possibly adaptive implicit dimensionality reduction rather than a pure training pathology [bernas-etal-2026]

models: Pythia-160M, Pythia-410M, Pythia-1B, Pythia-1.4B · method: PCA, Gradient–Tangent Alignment Test

SmolLM2

Revisiting Anisotropy in Language Transformers: The Geometry of Learning Dynamics (2026)measured

Anisotropy from frequency-blind sampling and self-reinforcing tangent gradients

Details

Bernas et al. give a two-part geometric account of anisotropy: they prove (Corollary 2.2) that as high-frequency tokens concentrate near their centroid, local-manifold curvature becomes statistically invisible [bernas-etal-2026] They prove (Proposition 2.3) the normal-to-tangent gradient magnitude ratio scales as O(t) in the concentration radius, so curvature-bearing normal updates are suppressed for high-frequency tokens, compounded by attention and residuals [bernas-etal-2026] Across the Pythia (160m/410m/1b/1.4b), SmolLM2 (360m/1.7b) and EuroBERT (210m/610m) suites, true gradients concentrate in an activation-derived tangent subspace far more than matched-rank random controls (energy ratios orders of magnitude above null) [bernas-etal-2026] The effect is strongest early in training and in early/middle layers, and weaker in EuroBERT, whose language-balanced training counteracts the frequency skew the mechanism depends on [bernas-etal-2026] The paper reframes anisotropy as a possibly adaptive implicit dimensionality reduction rather than a pure training pathology [bernas-etal-2026]

models: SmolLM2-360M, SmolLM2-1.7B · method: PCA, Gradient–Tangent Alignment Test