Baseline
Uniform data. Full gradients. The control arm.
no interventionCONTEXT JAMMING / EXPERIMENT 01 / JULY 2026
Neural networks keep arriving at the same narrow geometry. The experiment asks a blunt question: why make the optimizer rediscover the road every time?
One controlled mechanism check. One real digits MLP. No ViT result. No 7B result. The page keeps those facts separate.
The hidden geometry of training
The parameter count describes the room. It does not tell us where training walks. Kaushik and colleagues stacked more than 1,100 trained models—ViTs, Mistral LoRAs, LLaMA-3-8B models, ResNets—and found sharp, layer-wise spectral decay inside shared architectures.
The original result is about weights. This project turns it into a training intervention: measure whether each example's gradient points into the recovered basis, then filter, reweight, or constrain accordingly.
The room is huge. The traffic keeps choosing the same eight exits.— The thesis, compressed
The universal weight subspace hypothesis
For each same-shaped layer, flatten the parameters from many same-architecture models into rows. Subtract the feature-wise mean. Run PCA—the paper's practical order-1 HOSVD case—and retain the smallest rank that crosses a variance threshold.
How much geometry survives?
Choose a rank. Rust bars are retained directions; pale bars are the residual. The eighth direction crosses the pre-registered 90% variance threshold.
Why pre-filtering matters
Measure how much of each example's gradient energy falls inside the recovered basis.
Rank inside labels or task strata. Raw global filtering can erase a minority class.
Project updates toward the shared basis—or learn only coefficients over frozen directions.
UNPROVEN AT SCALE“Waste” is the hypothesis under test. A discarded direction may contain the very novelty a new task needs.
The gradient alignment scorer
A high score says direction, not usefulness. Easy examples, mislabeled examples, and duplicated examples can still score highly. Geometry becomes one feature in the sampling decision—not the whole decision.
The displayed examples are deterministic teaching inputs, not hidden rows from the digits dataset. Their scale is bounded by the observed real-data minimum and maximum. The class-coverage switch encodes a failure found during the smoke run.
Four training regimes
Uniform data. Full gradients. The control arm.
no interventionKeep the highest-alignment examples inside every class.
60% kept per classSample all examples, but visit aligned examples more often.
group-normalized samplerProject most of each update back into the recovered basis.
85% residual removalControlled mechanism check
The scorer sees the planted boundary almost perfectly. That proves the instrument can detect geometry deliberately placed in the data.
The control proves that the instrument detects signal deliberately placed in a known subspace. It does not prove that real models contain the same clean boundary.
Real-data results on digits
Loading verified result record…
Toggle the target-layer update spectrum. The constrained run places far more energy inside the recovered universal basis—but its matrix effective rank rises from 7.77 to 11.54. Those are different measurements.
What improved—and what did not
The hard constraint improved both IID and noisy OOD accuracy at 5,040 examples seen.
Filtered data gained 0.74 OOD points and lost 1.19 IID points. Robustness and fit moved apart.
Effective rank rose under the constraint. More basis alignment did not mean sharper matrix decay.
Ten MLP source models do not establish a ViT, LoRA, or frontier-pretraining result.
Leave-one-source-out stability
For each of three independently generated ten-checkpoint collections, the experiment removed one source, refit centered PCA, and compared principal angles with the full basis. That produced thirty comparisons at each measurable rank.
At rank eight, most directions can remain close enough to pull the mean down while the weakest included direction rotates toward orthogonality. A scorer that uses all eight directions inherits that sensitivity.
Rank nine is NOT IDENTIFIABLE after holdout. Nine centered held-in checkpoints support at most eight independent PCA directions. The record does not pad the basis or change the protocol to manufacture an answer.
Implementation
Same-architecture checkpoints
→Layer-wise centered PCA
→Per-example gradient scores
→Filter / reweight / constrain
→Measure accuracy + spectra
subspace = extract_layer_subspaces(
checkpoints,
parameter_names=["fc2.weight"],
variance_threshold=0.90,
max_rank=8,
reference_state=initial_state,
)
scores = score_examples(model, x, y, subspace)
chosen = select_top_fraction_per_group(scores, y, 0.60)
loss.backward()
project_gradients_(model, subspace, strength=0.85)PyTorch payload containing the basis, layer mean, shape, variance ratios, source-model count, and threshold metadata.
Download digits_subspace.ptInspect the mini-package ↗SHA-256 · f507d7bc5ac700088d…The expensive object is the shared basis. A new task changes only the small coefficient vector. The local package implements this parametrization; the 7B run did not execute on this machine.
TUCG + CAIRN
Test k = 16, 24, and 32 across layers. Numerical coincidence is not evidence; held-out behavior and subspace stability decide.
Open TUCG →Log example IDs, score, basis hash, coefficient delta, residual energy, and contradiction outcomes. Then ask whether cleaner attachments actually follow.
Open CAIRN →Limitations and open questions
How few source models can recover a stable basis? Ten models cap centered PCA rank at nine.
Filtering toward yesterday's geometry may delete the example that creates tomorrow's capability.
A score in one middle layer may not predict a useful whole-model update.
Alignment ranking can collapse class or task coverage unless the sampler protects it explicitly.
No calibrated power sensor was available. Wall time was recorded; energy was left null.
The 7B entry point is implemented but unexecuted. This 16 GiB host failed the 32 GiB safety floor.
Next experiments
The ten-source leave-one-out result is unstable. Add architectures, checkpoints, and tasks before trusting the basis.
Run CIFAR-10/100 or Food-101 with at least twenty adapters and a genuinely held-out task.
Compare alignment fraction, aligned gradient magnitude, influence normalization, and coverage constraints.
On a ≥32 GiB accelerator host, match tokens across baseline, filtered, sampled, and coefficient-only arms.
DATA RECORD · 3cc738c29955c0ac… · GATE verify_20260715T225801Z_2c4bd74f