Research record

Representation Geometry Is Not Load-Bearing

Ongoing research. This is an experimental result from active work, not a settled conclusion. The numbers are what we measured and the method is described so you can judge it, but the programme is still running and later experiments may revise what it means. More about this programme.

A small-scale study of low-rank latent structure, its costs, and one confirmed phenomenon

Latent Pretraining Research · Version 0.33.0 · 2026-08-20 Repository: joshuabolick/latent-pretraining-research


Abstract

We set out to test whether encouraging a neural network to concentrate its internal representation into fewer dimensions could make training more efficient. Across 183 archived GPU runs and roughly 600 additional local runs, the answer is no, and the reason turns out to be more interesting than the original question.

We report four results. First, a correction: an effect confirmed across three studies as a distinct "normalisation mechanism" was algebraically identical to the same penalty at a 1.2× larger weight, verified to below float32 epsilon. Second, a priced negative: the compactness the penalty produces is real and reproducible, but ordinary training followed by truncation and a few fine-tuning steps reaches the same place, leaving the intervention roughly 57× underwater; making the penalty 14× cheaper does not change this, because the benefit it buys is not statistically distinguishable from zero. Third, a confirmed phenomenon: latent representations expand by roughly 50% of their baseline residual energy at the learning transition and then consolidate, replicating on unseen seeds against a preregistration, with the geometric peak tracking the accuracy transition at r = 0.983 across a fourfold induced range. Fourth, and most decisive, a null with wide scope: representation geometry can be reshaped almost arbitrarily, 97.3% of the representation's tail eliminated, or 91.2% of the energy the output head most depends on removed, for under one tenth of a percentage point of held-out accuracy, at every model width, task difficulty, target subspace, and penalty weight tested.

The geometry moves reliably during learning. Moving it deliberately changes nothing. It is a correlate of learning, not a lever on it.

Total cloud compute spend across the entire project: $0.78.


1. Introduction

The motivating hypothesis was straightforward. A neural network's hidden state is a vector in some number of dimensions, say 48. If a model could be encouraged during training to place its useful information in a small subspace of that state, the remaining dimensions might be discarded, yielding a smaller and cheaper model at no cost to quality.

This is a plausible idea with a plausible mechanism, and it is cheap to test at small scale. The project built a platform for testing it: immutable experiment definitions, paired multi-seed studies, checksummed result bundles, preregistered decision rules, and a research console. Eight paired studies and 183 runs accumulated over that platform, culminating in a result classified as width transfer supported.

This paper reports what happened when that result was re-examined, and what the re-examination uncovered. Two features of the setting shape everything that follows:

Experiments are effectively free. A full 500-step training run takes about 7.5 seconds on a laptop CPU; a 36-run study costs four minutes and nothing. The binding constraint on this project was never compute: it was which question the rigour was pointed at.

Negative results are the majority of the output. Six hypotheses were screened and five killed. Three claims made during this work were later withdrawn by better evidence from the same work. We regard this as the project functioning correctly, and Section 7 treats the errors as a first-class result.


2. Experimental setup

Models. Two families behind a shared latent-capture interface: a single-layer causal GRU and a single-layer causal transformer, both with a LayerNorm (final_norm) feeding a linear output head. Widths from 12 to 768; most work at width 48 (17,280 parameters).

Tasks. Synthetic sequence tasks with explicit scoring masks. The primary task is synthetic-delayed-copy-v1: a sequence periodic with period lag, where the model must reproduce a token seen lag positions earlier. Difficulty is controlled by lag, vocabulary size, and sequence length.

Evaluation. Three disjoint samples per run: a seeded training stream, a fixed held-out quality batch, and a smaller fixed representation batch. The subspace used for any post-hoc analysis is always fitted on the representation batch and scored on the held-out batch, never on the same data.

The intervention. A differentiable penalty on rank-r residual energy, the fraction of representation variance lying outside the top r principal directions:

`` residual(H, r) = Σ σᵢ² for i ≥ r ÷ Σ σᵢ² for all i total_loss = task_loss + weight · residual(H, r) ``

Minimising it concentrates variance into r directions. Unless stated, r = 8, weight = 0.05, with a 10-step warmup.

Statistics. All comparisons are paired by seed. Intervals are two-sided 95% Student-t. Where multiple arms are compared, Bonferroni correction is applied and stated.


3. The original hypothesis, and a correction

3.1 The claimed mechanism

Three studies (widths 36, 48, 72; 28 matched seed pairs in total) compared two penalty "normalisations": total-energy-fraction, and discarded-dimension-mean, which was reported to improve the retained-rank endpoint by 2.91%, 3.78%, and 4.78% respectively. Every one of the 28 paired comparisons favoured the second, with confidence intervals far from zero. It was classified as a confirmed mechanism and carried forward as the project's preferred method.

3.2 The correction

The two normalisations are related by a constant:

`` total-energy-fraction: penalty = residual discarded-dimension-mean: penalty = residual · W / (W − r) ``

W and r are fixed hyperparameters, so W/(W−r) is a constant. Since the objective is task_loss + weight · penalty, dimension-mean at weight w is exactly total-energy-fraction at weight w · W/(W−r). Not approximately, identically.

Empirical verification at W = 48, r = 8, where the multiplier is 48/40 = 1.2:

Metricdimmean @ 0.05 vs fraction @ 0.06vs fraction @ 0.05
final_loss0.00e+001.77e-03
final_eval_loss6.42e-081.97e-03
final_effective_rank2.68e-083.31e-03
final_latent_residual_energy3.55e-084.28e-03

Every difference against weight 0.06 is at or below float32 epsilon (1.19e-07). They are the same run.

All three studies fixed retained rank at exactly one sixth of width: 6/36, 8/48, 12/72, holding the multiplier at 1.2 throughout. The project's decision log had already recorded that all three used "the same 1.2 normalization multiplier"; what was not drawn was the implication that holding it constant reduced the treatment arm to a weight change.

The observed effect sizes are what the weight response predicts. Extrapolating the existing GRU weight-response curve to a 1.2× weight increase gives 2.65%, inside the observed 2.91–4.78% range.

3.3 What this cost, and what it teaches

Six releases of confirmatory work measured, three times, that a 20% larger penalty compresses 3–5% more. The 28-of-28 consistency and the tight intervals were not evidence of a mechanism: they are what near-deterministic monotonicity looks like.

Two further limits surfaced in the same review. The primary endpoint, rank-8 residual energy, is the quantity the penalty minimises, making the result close to circular. And held-out accuracy sat at 96–99.5% in every arm, leaving the ±2 percentage point quality guardrail no headroom to detect a trade-off.


4. Pricing the efficiency claim

With the mechanism claim withdrawn, the underlying question remained: does the compactness buy anything?

4.1 Structural reduction

We built the first endpoint in the project that is downstream of the training objective rather than identical to it: project the final representation onto its own top-r subspace and score the output head on the projected states.

On the archived lag=4 task, the penalised model retained 95% of its untruncated accuracy at rank 12 where the baseline needed rank 16, mean 3.2 dimensions saved, 4 of 5 seeds favourable, at an untruncated cost of −0.17 pp. Narrow models trained directly at widths 6–12 reached only 8–33% accuracy, so the reduction was not obtainable by simply building smaller.

On a harder lag=8 task, neither arm reached 95% retention at any rank below full width.

4.2 The cheaper alternative

Post-hoc truncation with no adaptation is the harshest possible test. Allowing a few ordinary fine-tuning steps changes the picture completely: at lag=4, the treatment's 5.2-point rank-8 advantage became a 0.08-point disadvantage, with 5/5 recovery for every arm at every rank.

The apparent surviving advantage was faster recovery, 3.6 steps versus 6.2. Measuring the cost side properly:

Configuration800-step optimiser timeOverhead
Task-only (track_training_residual=false)3.60s,
Baseline with metric-only SVD4.11s+14.2%
Treatment with penalty4.26s+18.3%

The penalty's overhead is worth about 147 equivalent training steps, to save about 2.6, roughly 57× underwater.

A measurement trap. trainer.track_training_residual defaults to true, so a naive "baseline" computes the same per-step SVD as the treatment purely for metrics. A first attempt at this table compared those two arms and measured the penalty overhead as negative.

4.3 Cost was fixable; benefit was not

The per-step SVD costs O(n·d²) and, measured across widths 48–768, its overhead rises with width (+33.4% to +58.3%), the exponent for the SVD (1.33) exceeds that for the training step (1.08). That closed the case on cost.

Cost turned out to be an engineering problem. A cached-subspace estimator, refreshing the retained basis every k steps and projecting against it in between at O(n·d·r), reverses the trend entirely:

WidthExactCached (k=50)Reduction
48+22.3%+8.9%2.5×
192+44.8%+7.7%5.8×
768+52.2%+3.7%14.1×

Geometry is preserved: residual energy 0.306013 exact versus 0.305417 cached at width 48.

But the benefit does not scale. Measuring both sides per width in the same runs:

WidthSaved stepsOverheadBreak-even
483.0+8.9%24×
960.2+7.4%297×
1920.2+5.8%233×
3840.4+5.9%117×

And critically, no width produces a paired interval excluding zero. Applying the same test to the earlier fine-tuning result gives [−2.18, +7.38]: that benefit was never statistically established either. The direction and the 4-of-5 count were reported accurately; describing it as an effect was not warranted.


5. A confirmed phenomenon: expansion at the learning transition

Every idea screened to this point was a method, and every one lost to a cheaper ordinary alternative. We turned to a question about a phenomenon, which cannot fail that way.

5.1 The observation

Across all 41 archived task-only runs: no penalty, nothing driving geometry but learning itself, rank-8 residual energy rises during training, peaks near the accuracy transition, and then consolidates.

Since residual energy measures variance outside the top 8 directions, a rise means the representation becomes measurably less concentrated while the task is being learned.

5.2 The confounder, and the test that settles it

Every archived run used the same learning rate, so transitions clustered between steps 70 and 120. A peak that merely happened early would look identical; the within-archive correlation was only r = 0.458.

Sweeping learning rate across a 16× range moved the transition from step 55 to 205. The peak followed, at r = 0.954, with the rise positive in 56 of 56 runs.

5.3 Preregistered confirmation

A confirmation was preregistered: design, seeds, endpoints, and decision rules fixed at a commit pushed before any run started, and executed on twelve seeds appearing in no previous study.

RequirementObservedResult
Mean rise ≥ 0.05, interval above zero+0.2225 [+0.2168, +0.2283]Pass
≥ 10 of 12 peaks within 50 steps of transition12 of 12 (mean offset +2.1)Pass
Transition–peak correlation ≥ 0.70r = 0.983Pass
Rise above zero at ranks 4, 8, 16, 24all fournot a rank artifact
Transformer arm, same rules+0.0231 [+0.0192, +0.0270]Fail (materiality floor)

Preregistered classification: confirmed, architecture-specific. The transformer's interval excludes zero and all twelve runs peak within 50 steps, but at 9.6× weaker magnitude: small, not absent. The threshold was not moved after inspection.

5.4 What sets its size: two withdrawn answers

Magnitude does not track representational difficulty. Across lag 2→8 the rise is flat (+1%) while the transition moves from step 58 to 162, with a constant baseline, a clean null. Across vocabulary 8→64 the rise falls 38%, but the baseline rises tenfold over the same range, making that trend a ceiling artifact.

Normalising by available headroom made both axes flat at 0.3050.357, and we reported that as a possible invariant. A width sweep withdrew it. Headroom-normalised expansion rises with width under fixed absolute rank (0.2530.436) and falls under fixed relative rank (0.3610.260), two opposing trends that cross at exactly width 48, because rank 8 is 48/6 there, and width 48 is where every prior measurement was taken. The invariant was a crossing point.


6. Geometry is not load-bearing

6.1 What the expansion is made of

Decomposing the residual ratio into absolute energies over five seeds, baseline to peak: total energy grows 1.823×, top-8 energy 1.166×, and tail energy 3.150× [3.014, 3.286]. It is genuine expansion into new directions, not redistribution. (Total energy grows because nn.LayerNorm carries a learned affine gain, which roughly doubles over training.)

Meanwhile the output head moves the other way. Its alignment with the representation's top-8 subspace climbs from 0.1905 at initialisation, against a measured chance value of 0.1697, to 0.5745, a 3.4× concentration into one sixth of the space.

This suggested a mechanism: the penalty was free because it suppressed the tail, precisely the part the head learns not to read. That would explain unchanged quality, absent efficiency, and a cross-model CKA of 0.98 all at once.

6.2 The mechanism, falsified by its own test

The mechanism named its own falsification: penalise the head's most-responsive directions and predict a quality collapse. Three penalties, identical in form, differing only in target subspace:

ArmMoved its own target byAccuracy vs control
tail−0.2714 (0.4332 → 0.1617)−0.09 pp [−0.40, +0.21]
head-top−0.2509 (0.4705 → 0.2197)+0.08 pp [−0.08, +0.25]
head-bottom−0.0390 (0.0950 → 0.0560)−0.01 pp [−0.18, +0.17]

Halving the representation's energy in the directions the head responds to most strongly cost nothing. The test was not underpowered, the head penalty moved its target as much as the tail penalty moved its own. The tail penalty pushes energy into head-aligned directions and the head penalty pushes it out; both are free.

6.3 Capacity, also falsified

The remaining explanation was that the model simply has more capacity than the task needs. At 30 seeds per arm and widths where the task is genuinely unsolved:

WidthControl accuracytailhead-tophead-bottom
1678.61%+0.10+0.31−1.59
1260.13%−0.29+0.29−0.52

Nothing binds. The single marginal result (head-bottom at width 16) fails Bonferroni correction ([−3.30, +0.12]), fails to replicate at width 12, and is the wrong arm, penalising what the head reads most was free at both widths.

6.4 The penalty was never too weak

The last untested variable was penalty weight, held at 0.05 throughout for comparability. Sweeping it across two orders of magnitude, reporting achieved geometry alongside accuracy:

PenaltyWeightCost (pp)95% intervalTargetRemoved
tail0.5−0.07[−0.20, +0.07]0.011597.3%
tail2.0−0.80[−1.10, −0.50]0.015196.5%
tail5.0−6.17[−9.45, −2.88]0.011697.3%
head-top0.5−0.08[−0.16, −0.00]0.041291.2%
head-top5.0−1.32[−1.63, −1.01]0.011397.6%

At weight 0.5 the tail penalty eliminates 97.3% of the representation's tail, leaving 98.9% of all variance in 8 of 48 directions, for −0.07 pp, an interval including zero.

Beyond weight 0.5 the tail target is flat (0.0115, 0.0151, 0.0116) while cost grows from −0.07 to −6.17 pp. Weight 5.0 costs 88× more accuracy and achieves identical geometry. That is optimisation interference, not a constraint binding, a distinction only visible because achieved geometry was measured alongside accuracy.

6.5 The scope of the null

RegimeResult
Width 48, 99.7% accuracyfree
Width 16, 78.6% accuracyfree
Width 12, 60.1% accuracyfree
Tail subspacefree
Head's most-responsive subspacefree
Head's least-responsive subspacefree
Weights 0.055.0free where the constraint is achieved

The penalty was never too weak, the model was never too large, and the subspace was never the wrong one.


7. What the errors taught

Nine standing diagnostics were adopted, each from a mistake this project actually made. We regard this as the most transferable output of the work.

  1. Report cross-model CKA against a matched control before any geometry claim. It distinguishes "learned something different" from "same solution, rotated", costs nothing, and would have caught the central error after study one rather than study eight.
  2. Report a paired confidence interval alongside any favourable-direction count. A 4-of-5 count was twice described as an established effect when its interval was [−2.18, +7.38].
  3. Price every claim against the cheapest ordinary alternative. The intervention lost not to a better intervention but to plain fine-tuning, which no study had costed against it.
  4. The primary endpoint must not be the training objective. Penalising a quantity and reporting it fell is close to circular.
  5. The task must have quality headroom. At 96–99.5% accuracy the guardrails cannot detect a trade-off.
  6. Normalise bounded quantities by available headroom before comparing across conditions. The raw endpoint produced a clean, monotone, interval-separated trend in the opposite direction to the truth.
  7. Never validate an invariant at a single point where two conventions coincide. At width 48 a fixed rank 8 and a fixed width/6 are the same measurement, and two oppositely-sloped curves cross there.
  8. Correct for multiple comparisons and require replication. One of three arms marginally excluded zero at one width; it failed correction and did not replicate.
  9. Statistical detectability is not the same as mattering. Three consecutive automated verdict rules counted any interval excluding zero as a result. Each was written before its weakness was visible, and each would have produced the wrong headline.

Item 9 deserves emphasis. Automated decision rules encoded before their failure modes are understood will state the opposite of the truth with complete confidence. Every verdict in this paper was checked by hand against the underlying numbers, and three were overridden.

Preregistration is for confirmation, not discovery. The project's early pattern: preregister, run 36 GPU runs, confirm a small effect, spent confirmatory framing on effects nobody had shown to exist. Given that a 36-run study costs four minutes and nothing, the correct order is: screen freely and cheaply, then preregister once an effect is shown to exist. The one preregistration that followed that order (Section 5.3) is the only confirmed positive result in the project.


8. Limitations

This work is small in every dimension that matters for generalisation.

  • Two architectures, both single-layer, both tiny. Widths 12–768; most results at width 48 (17,280 parameters).
  • One task family: synthetic delayed-copy, plus a simpler arithmetic-sequence task. No natural language, no real data.
  • One behavioural measure. Accuracy is argmax-only. Calibration, robustness, and out-of-distribution behaviour could move while accuracy does not, and this is genuinely untested, it is the most plausible way the central null could be wrong.
  • One representation site. All penalties and analyses target final_norm. Weights, embeddings, and the recurrent state itself were not manipulated.
  • The positive result is architecture-scoped. The expansion is confirmed for a GRU on delayed-copy; the transformer shows it at a tenth the magnitude, below the preregistered materiality floor.
  • Sample sizes range from 5 to 30 seeds per arm. Where they are small, we say so, and three results in this paper were withdrawn precisely because a larger or differently-aimed sample contradicted them.

Nothing here should be extrapolated to production-scale models. What can reasonably transfer is the sign of the central result and the methodology in Section 7.


9. Conclusion

We asked whether concentrating a network's latent representation could make training more efficient. It cannot, in this setting, and the reason is more general than the question: the geometry is not carrying the load.

The representation can be crushed into a sixth of its dimensions, or evacuated from the directions the output head most depends on, at a cost of under a tenth of a percentage point: across every width, task difficulty, target subspace, and penalty weight we could reach. The model routes around any constraint of this kind.

Alongside that sits one solid positive: latent representations reliably expand at the moment of learning and then consolidate, confirmed against a preregistration on unseen seeds, with the peak tracking the transition at r = 0.983. Taken together, the two results are sharper than either alone.

The geometry moves reliably during learning. Moving it deliberately changes nothing. It is a correlate of learning, not a lever on it.

Six hypotheses were screened; five were killed. Three claims made during this work were withdrawn by later evidence from the same work. Every correction was appended rather than applied by rewriting history, and every published number re-derives from committed data.

The whole project cost $0.78 in cloud compute.

Where we stop. Every cheap question this setup can answer has been answered. Further arms would generate variations rather than reduce uncertainty. The honest extensions, a second architecture family, a non-synthetic task, behavioural measures beyond argmax accuracy: are different projects, not further runs of this one.


Appendix A: Result index

Every claim traces to a committed study note.

ReleaseResultNote
v0.15.0Normalisation was a reparameterisationnormalization-reparameterization-correction.md
v0.16.0Structural reduction, first downstream endpointstructural-reduction-pilot-v1.md
v0.17.0Fine-tuning substitutes; 57× underwatertruncation-finetune-pilot-v1.md
v0.18.0Overhead rises with widthoverhead-width-scaling-pilot-v1.md
v0.20.0Cached estimator; 14× cheapercheap-subspace-pilot-v1.md
v0.21.0Benefit does not scale, never significantbenefit-width-scaling-pilot-v1.md
v0.22.0CKA ≈ 0.98; a change of basisarchive-mining-v1.md
v0.23.0Gradient-subspace penalty killed (H1)gradient-subspace-pilot-v1.md
v0.24.0Quantisation killed (H4)quantization-pilot-v1.md
v0.25.0Phase transition survives screening (H6)phase-transition-pilot-v1.md
v0.26.0Preregistered confirmationphase-transition-confirmation-v1-results.md
v0.27.0Difficulty refuteddifficulty-scaling-pilot-v1.md
v0.28.0Invariant withdrawnwidth-scaling-pilot-v1.md
v0.29.0Expansion decomposedexpansion-mechanism-pilot-v1.md
v0.30.0Mechanism falsifiedhead-subspace-penalty-v1.md
v0.31.0Capacity falsifiedcapacity-test-v1.md
v0.32.0Weight sweep; line closedweight-sweep-v1.md

Appendix B: Reproduction

``bash python -m venv .venv python -m pip install -e ".[dev,local-gpu]" python -m pytest && python -m ruff check . && python -m mypy src ``

Every analysis in this paper is a standalone script under analysis/, runnable on a laptop CPU with no GPU and no cost. Archived GPU runs live under results/ with checksummed manifests; binaries use Git LFS.

ScriptRuntime
archive_mining.py~1 min (reads results/ only)
structural_reduction_pilot.py~6 min
truncation_finetune_pilot.py~5 min
phase_transition.py / _verify.py~1 / ~2 min
phase_transition_confirmation.py~8 min
capacity_test.py~50 min
weight_sweep.py~30 min

Want this measured on your data?

We build private models our clients own and run on their own infrastructure, and every engagement proves measured lift on the client's own tasks before we call it done. Start free with a readiness scorecard that tells you whether your data can support it, or book a short call.