suchirsalhan commited on
Commit
07603ed
·
verified ·
1 Parent(s): f763816

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +262 -146
README.md CHANGED
@@ -5,32 +5,34 @@ tags: [model-merging, alignment, polypythia, goldfish, multilingual]
5
 
6
  # Compose-audit: putting the alignment map and the merging payoff on the SAME real models
7
 
8
- _Generated 2026-08-26 20:43 UTC · training-free · code: `/root/compose-audit` · operators/aligners/metrics imported unmodified from `mergeschool.core` (`/root/mergeability`, treated as read-only)._
9
 
10
  ## Read this first: what substrate, and what metric
11
 
12
  | | SET 1 | SET 4 |
13
  |---|---|---|
14
- | **Substrate** | `EleutherAI/pythia-{14m,70m,160m}-seed{1..9}` (PolyPythia) — real reseeded LMs | `goldfish-models/eng_latn_1000mb` × `{nld,spa,ell,pol}_*_1000mb` — the real bilingual-composition models, GPT-2 arch, 125M |
15
  | **What varies between the two parents** | the init/data-order **seed only**. Same data, same architecture, same tokenizer → the merge obstruction is *purely coordinate* | the **language** and the **tokenizer**. Independently initialised, independently trained |
16
  | **Held-out corpus** | FLORES-200 devtest `eng_Latn` | FLORES-200 devtest, `eng_Latn` + the partner language |
17
- | **Metric** | Δfloor in **nats/token** vs the better parent | Δfloor in **nats per UTF-8 byte** vs the better parent (bytes, because the two parents use different tokenizers and nats/token is not comparable across them) |
18
- | **What the metric is** | a **likelihood** metric | a **likelihood** metric |
19
 
20
- > **Δfloor is a likelihood metric, not benchmark accuracy.** Nothing below shows that a likelihood
21
- > rescue transfers to BLiMP/MultiBLiMP accuracy, or to any downstream task. The audit's sharpest
22
- > point *recovery is not success* is **not** settled by these numbers and must not be written up
23
- > as if it were. **We tested that transfer directly on SET 1 with BLiMP see the accuracy section
24
- > below and it does not hold.** SET 4 has no accuracy benchmark in this window (see Coverage).
 
 
25
 
26
 
27
  ## Headline findings
28
 
29
- 1. **Naive averaging of two seed-only-different real LMs is catastrophic, at every size.** Δfloor 14m: +32.4 · 31m: +20.4 · 70m: +20.2 · 160m: +8.7 · 410m: +6.2 nats/token against parent floors of 3–4.4 nats/token, i.e. above the uniform-over-vocabulary reference of 10.8 for all but the largest. n = 36 / 36 / 36 / 20 / 1 pairs.
30
- 2. **Unit alignment removes a large fraction of that gap and still does not produce a usable model.** Best of permutation / Procrustes removes 14m: 72% · 31m: 57% · 70m: 55% · 160m: 30% · 410m: 9% — leaving 9.0 · 8.1 · 8.7 · 6.0 · 5.6 nats/token above the better parent.
31
- 3. **The rescue shrinks monotonically with scale** (14m: 72% → 410m: 9%) while the naive gap shrinks too — so the coordinate-removable share of the obstruction is falling in exactly the direction the field is scaling. (Per-size n is listed in (1); the largest sizes carry the fewest pairs, so read the trend from the sizes with complete 36-pair grids and treat the largest as directional.)
32
  4. **The likelihood rescue does not transfer to accuracy.** On pythia-14m (n=36), parents average 0.652 on BLiMP; the naive merge 0.518 and the aligned merge 0.544, against chance 0.500. A ~70% Δfloor rescue buys ~0.026 accuracy. Pairwise, the two rescues are uncorrelated.
33
- 5. **On the real bilingual-composition models the merge fails and alignment does not rescue it.** Goldfish eng×{nld,spa,ell,pol}: naive Δfloor on English text +0.89 nats/byte against a 0.81 floor; the best M1 rung +0.89. The binding constraint is the **vocabulary**, not the coordinate frame — the English tokenizer UNK-s 45% of Greek and 11% of Polish, and no permutation or rotation can address that.
34
  6. **…and the accuracy dissociation runs the other way there.** The same likelihood-destroyed Goldfish merges retain 0.68 on MultiBLiMP-English (parent 0.96, chance 0.50). Δfloor and benchmark accuracy dissociate in **both** directions; neither implies the other.
35
  7. **P0-2: the pre-merge predictors do not predict the realised rescue.** Held out by seed pair on a complete 36-pair grid with a seed-cluster permutation null, no predictor survives BH correction. Reported as the negative transfer result it is.
36
  8. **This is not an under-trying artifact.** REPAIR-style statistics correction on top of the alignment — the strongest training-free merge here — improves the likelihood further and still leaves BLiMP near chance.
@@ -80,30 +82,30 @@ Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **20.30**, permut
80
  Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **20.17**, permutation-aligned **10.98** nats/token.
81
 
82
 
83
- ### pythia-160m — 20 seed pairs · mean parent floor **3.254** nats/token · uniform-over-vocabulary reference **10.826** nats/token
84
 
85
  | rung | n | mean nats/tok | mean Δfloor | median Δfloor | best Δfloor | beats naive | % of naive Δfloor removed |
86
  |---|---|---|---|---|---|---|---|
87
- | M0_naive_avg | 20 | 11.92 | 8.66 | 8.30 | 6.88 | 0/20 | 0.0% |
88
- | M1_perm_avg | 20 | 9.89 | 6.64 | 6.36 | 5.50 | 18/20 | 22.2% |
89
- | M1_orth_avg | 20 | 9.42 | 6.17 | 6.04 | 5.16 | 20/20 | 28.2% |
90
- | M2_task_arith | 20 | 30.09 | 26.83 | 27.23 | 17.88 | 0/20 | -209.4% |
91
- | M3_ties | 20 | 59.75 | 56.50 | 56.80 | 49.69 | 0/20 | -559.8% |
92
 
93
- Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **8.66**, permutation-aligned **6.63** nats/token.
94
 
95
 
96
- ### pythia-410m — 1 seed pairs · mean parent floor **2.967** nats/token · uniform-over-vocabulary reference **10.826** nats/token
97
 
98
  | rung | n | mean nats/tok | mean Δfloor | median Δfloor | best Δfloor | beats naive | % of naive Δfloor removed |
99
  |---|---|---|---|---|---|---|---|
100
- | M0_naive_avg | 1 | 9.16 | 6.19 | 6.19 | 6.19 | 0/1 | 0.0% |
101
- | M1_perm_avg | 1 | 8.61 | 5.64 | 5.64 | 5.64 | 1/1 | 8.9% |
102
- | M1_orth_avg | 1 | 8.77 | 5.81 | 5.81 | 5.81 | 1/1 | 6.2% |
103
- | M2_task_arith | 1 | 16.05 | 13.08 | 13.08 | 13.08 | 0/1 | -111.3% |
104
- | M3_ties | 1 | 13.13 | 10.17 | 10.17 | 10.17 | 0/1 | -64.2% |
105
 
106
- Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **6.19**, permutation-aligned **5.64** nats/token.
107
 
108
 
109
  **What this says.**
@@ -133,8 +135,8 @@ Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **6.19**, permuta
133
  | pythia-14m | 36 | 4.38 | 32.43 | 69.9% | 50.5% | 72.0% | 0.588 | 0.374 | 0.0652 |
134
  | pythia-31m | 36 | 3.94 | 20.35 | 47.7% | 46.4% | 57.4% | 0.632 | 0.380 | 0.0645 |
135
  | pythia-70m | 36 | 3.63 | 20.16 | 43.9% | 50.4% | 55.1% | 0.671 | 0.428 | 0.0793 |
136
- | pythia-160m | 20 | 3.25 | 8.66 | 22.2% | 28.2% | 30.4% | 0.755 | 0.771 | 0.0941 |
137
- | pythia-410m | 1 | 2.97 | 6.19 | 8.9% | 6.2% | 8.9% | 0.309 | 0.183 | 0.0823 |
138
 
139
  The coordinator flagged this from the first two pairs and asked whether it survives the full grid.
140
  **It does, monotonically, across every size we ran.** The naive merge's Δfloor shrinks with scale
@@ -167,7 +169,7 @@ exactly the direction the field is scaling.
167
 
168
  At a 46.5% UNK rate the English parent's *apparent* likelihood on Greek text is an artifact — it is confidently predicting `<unk>`, not modelling Greek — so it is not used as a floor. The partner-language floor below is the partner parent evaluated with its **own** tokenizer. The **English-side** column is the clean one (0.07% UNK) and is the primary SET 4 number.
169
 
170
- Uniform-over-vocabulary reference (a model that has learned nothing), mean over the two languages, in the same units: **eng-nld_Latn** 3.093 nats/byte.
171
 
172
 
173
  **PRIMARY — Δfloor on ENGLISH text vs the English parent (nats/UTF-8 byte).** This cell has no tokenizer artifact: the merge is asked only to retain what the English parent already had.
@@ -175,12 +177,22 @@ Uniform-over-vocabulary reference (a model that has learned nothing), mean over
175
  | pair | M0_naive_avg | M1a_vocab_avg | M1b_vocab_perm_avg | M1c_vocab_orth_avg | M1d_vocab_perm_forced | M1e_vocab_orth_forced | M1g_emb_procrustes | M1h_emb_proc_units | M1f_perm_novocab |
176
  |---|---|---|---|---|---|---|---|---|---|
177
  | eng–nld_Latn | 0.889 | 1.056 | 1.058 | 1.058 | 1.167 | 0.990 | 1.085 | 0.975 | 0.891 |
 
 
 
 
 
 
 
178
 
179
  **Δfloor vs the better parent, mean over the two languages, nats/UTF-8 byte** (lower is better; 0 would mean the merge matches the better parent):
180
 
181
  | pair | vocab overlap | floor eng | floor X (own tok) | M0_naive_avg | M1a_vocab_avg | M1b_vocab_perm_avg | M1c_vocab_orth_avg | M1d_vocab_perm_forced | M1e_vocab_orth_forced | M1g_emb_procrustes | M1h_emb_proc_units | M1f_perm_novocab |
182
  |---|---|---|---|---|---|---|---|---|---|---|---|---|
183
  | eng–nld_Latn | 27.8% | 0.811 | 0.792 | 1.689 | 1.763 | 1.766 | 1.766 | 2.004 | 1.601 | 1.732 | 1.559 | 1.691 |
 
 
 
184
 
185
  **Split by language, and Δ vs naive:**
186
 
@@ -195,6 +207,33 @@ Uniform-over-vocabulary reference (a model that has learned nothing), mean over
195
  | eng–nld_Latn | M1g_emb_procrustes | 1.085 | 2.380 | 0.043 |
196
  | eng–nld_Latn | M1h_emb_proc_units | 0.975 | 2.143 | -0.130 |
197
  | eng–nld_Latn | M1f_perm_novocab | 0.891 | 2.491 | 0.002 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  **Rungs.** `M0_naive_avg` = straight weight average in raw index space (the merge the manuscript
200
  reports as failing). `M1a_vocab_avg` = English/partner embedding + unembedding rows transported into
@@ -214,7 +253,7 @@ PolyPythia parents are English LMs, so BLiMP applies directly to SET 1's merges.
214
  | substrate | n pairs | mean parent acc | better-parent ceiling | M0 naive | M1 permutation | M1 Procrustes | best rung, % of the parents' above-chance margin retained |
215
  |---|---|---|---|---|---|---|---|
216
  | pythia-14m | 36 | 0.652 | 0.664 | 0.518 | 0.533 | 0.530 | 28.5% |
217
- | pythia-70m | 19 | 0.718 | 0.723 | 0.518 | 0.537 | 0.543 | 23.6% |
218
 
219
  **This is the result the audit asked for, and it is negative.** On pythia-14m the permutation
220
  alignment removes ~70% of the naive merge's Δfloor in nats/token — and the merged model still scores
@@ -228,7 +267,7 @@ Pair by pair, does the size of the likelihood rescue predict the size of the acc
228
  | substrate | n | Spearman(Δfloor rescue, BLiMP rescue) | mean Δfloor rescue (nats/tok) | mean BLiMP rescue (acc) |
229
  |---|---|---|---|---|
230
  | pythia-14m | 36 | 0.139 | 23.44 | 0.0257 |
231
- | pythia-70m | 19 | 0.309 | 9.91 | 0.0314 |
232
 
233
  ## Did we try hard enough? · REPAIR on top of the alignment
234
 
@@ -236,11 +275,11 @@ The obvious objection to a negative merging result is that averaging is a weak m
236
 
237
  | substrate | n pairs | rung | mean Δfloor (nats/tok) | median Δfloor | BLiMP accuracy | % of the parents' above-chance margin retained |
238
  |---|---|---|---|---|---|---|
239
- | pythia-14m | 1 | M0_naive_avg | 23.83 | 23.83 | 0.473 | -14.5% |
240
- | pythia-14m | 1 | M1_perm_avg | 5.66 | 5.66 | 0.527 | 14.6% |
241
- | pythia-14m | 1 | M4_perm_repair | 5.16 | 5.16 | 0.531 | 17.1% |
242
- | pythia-14m | 1 | M5_naive_repair | 22.05 | 22.05 | 0.497 | -1.6% |
243
- | pythia-14m | 1 | **parents** | 0.00 | 0.00 | 0.684 | 100.0% |
244
 
245
  REPAIR does help the likelihood — it takes a further bite out of the aligned merge's Δfloor, and it
246
  is the best training-free merge in this report. It does **not** change the conclusion. The repaired
@@ -309,68 +348,120 @@ alignment were all tried on the same pairs; the best of them recovers most of th
309
  accuracy standing. Whichever of the two you report, the other does not follow from it.
310
 
311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  ## P0-2 · Do the pre-merge predictors predict the realised rescue?
313
 
314
  Showing, per substrate and per outcome, the **six predictors with the largest |AUROC − 0.5|** plus the multivariate ridge. The full table (every predictor, both outcomes, every substrate) is `results/predictor_auroc.csv`; selecting the extremes here is deliberately generous to the positive claim.
315
 
316
  | substrate | outcome | predictor | n | Spearman | AUROC (held out by seed) | null mean | perm p | BH q |
317
  |---|---|---|---|---|---|---|---|---|
318
- | pythia-14m | rescue_frac | bnd_perm | 36 | 0.012 | 0.296 | 0.497 | 0.981 | 1.000 |
319
- | pythia-14m | rescue_frac | qmd_orth | 36 | 0.093 | 0.676 | 0.497 | 0.037 | 0.232 |
320
- | pythia-14m | rescue_frac | qmd_perm | 36 | 0.077 | 0.664 | 0.498 | 0.051 | 0.232 |
321
- | pythia-14m | rescue_frac | qmd_act_perm | 36 | -0.207 | 0.657 | 0.500 | 0.055 | 0.232 |
322
- | pythia-14m | rescue_frac | qmd_act_procrustes | 36 | -0.207 | 0.657 | 0.500 | 0.055 | 0.232 |
323
- | pythia-14m | rescue_frac | cka_last | 36 | -0.478 | 0.651 | 0.499 | 0.067 | 0.253 |
324
- | pythia-14m | rescue_frac | MULTIVARIATE_ridge_all | 36 | 0.254 | 0.620 | 0.501 | 0.114 | 0.311 |
325
- | pythia-31m | rescue_frac | bnd_perm | 36 | -0.490 | 0.750 | 0.506 | 0.011 | 0.232 |
326
- | pythia-31m | rescue_frac | coord_share_bnd_perm | 36 | 0.427 | 0.710 | 0.505 | 0.025 | 0.232 |
327
- | pythia-31m | rescue_frac | weight_cosine | 36 | 0.274 | 0.704 | 0.504 | 0.029 | 0.232 |
328
- | pythia-31m | rescue_frac | d_raw | 36 | -0.321 | 0.704 | 0.505 | 0.025 | 0.232 |
329
- | pythia-31m | rescue_frac | bnd_raw | 36 | -0.391 | 0.701 | 0.506 | 0.032 | 0.232 |
330
- | pythia-31m | rescue_frac | qmd_perm | 36 | -0.493 | 0.691 | 0.505 | 0.048 | 0.232 |
331
- | pythia-31m | rescue_frac | MULTIVARIATE_ridge_all | 36 | 0.403 | 0.707 | 0.505 | 0.035 | 0.232 |
332
- | pythia-70m | rescue_frac | coord_share_bnd_perm | 33 | 0.444 | 0.768 | | | |
333
- | pythia-70m | rescue_frac | bnd_perm | 33 | -0.386 | 0.750 | | | |
334
- | pythia-70m | rescue_frac | coord_share_perm | 33 | 0.389 | 0.728 | | | |
335
- | pythia-70m | rescue_frac | coord_share_orth | 33 | 0.383 | 0.724 | | | |
336
- | pythia-70m | rescue_frac | qmd_act_perm | 33 | -0.498 | 0.724 | | | |
337
- | pythia-70m | rescue_frac | qmd_act_procrustes | 33 | -0.498 | 0.724 | | | |
338
- | pythia-70m | rescue_frac | MULTIVARIATE_ridge_all | 33 | 0.465 | 0.732 | | | |
339
- | pythia-160m | rescue_frac | qmd_act_perm | 15 | -0.079 | 0.214 | — | — | — |
340
- | pythia-160m | rescue_frac | qmd_act_procrustes | 15 | -0.079 | 0.214 | — | — | — |
341
- | pythia-160m | rescue_frac | qmd_act_ot | 15 | -0.111 | 0.232 | — | — | — |
342
- | pythia-160m | rescue_frac | weight_cosine | 15 | 0.364 | 0.714 | — | — | — |
343
- | pythia-160m | rescue_frac | d_raw | 15 | -0.393 | 0.714 | — | — | — |
344
- | pythia-160m | rescue_frac | bnd_perm | 15 | -0.264 | 0.696 | — | — | — |
345
- | pythia-160m | rescue_frac | MULTIVARIATE_ridge_all | 15 | 0.100 | 0.411 | — | — | — |
346
  | pythia-14m | dfloor_M1best | bnd_orth | 36 | -0.000 | 0.204 | 0.502 | 1.000 | 1.000 |
347
  | pythia-14m | dfloor_M1best | bnd_perm | 36 | -0.002 | 0.222 | 0.502 | 0.997 | 1.000 |
348
- | pythia-14m | dfloor_M1best | coord_share_orth | 36 | -0.457 | 0.738 | 0.495 | 0.015 | 0.232 |
349
- | pythia-14m | dfloor_M1best | coord_share_perm | 36 | -0.445 | 0.735 | 0.495 | 0.016 | 0.232 |
350
- | pythia-14m | dfloor_M1best | qmd_orth | 36 | 0.438 | 0.725 | 0.496 | 0.021 | 0.232 |
351
- | pythia-14m | dfloor_M1best | coord_share_bnd_perm | 36 | -0.155 | 0.290 | 0.503 | 0.977 | 1.000 |
352
- | pythia-14m | dfloor_M1best | MULTIVARIATE_ridge_all | 36 | 0.539 | 0.778 | 0.497 | 0.003 | 0.228 |
353
- | pythia-31m | dfloor_M1best | qmd_orth | 36 | 0.289 | 0.670 | 0.502 | 0.101 | 0.298 |
354
- | pythia-31m | dfloor_M1best | coord_share_orth | 36 | -0.271 | 0.670 | 0.503 | 0.103 | 0.298 |
355
- | pythia-31m | dfloor_M1best | qmd_perm | 36 | 0.243 | 0.633 | 0.503 | 0.166 | 0.372 |
356
- | pythia-31m | dfloor_M1best | coord_share_perm | 36 | -0.230 | 0.633 | 0.503 | 0.166 | 0.372 |
357
- | pythia-31m | dfloor_M1best | bnd_raw | 36 | 0.163 | 0.633 | 0.503 | 0.132 | 0.346 |
358
- | pythia-31m | dfloor_M1best | bnd_orth | 36 | 0.114 | 0.611 | 0.501 | 0.186 | 0.405 |
359
- | pythia-31m | dfloor_M1best | MULTIVARIATE_ridge_all | 36 | -0.111 | 0.500 | 0.501 | 0.516 | 0.701 |
360
- | pythia-70m | dfloor_M1best | cka_last | 33 | 0.590 | 0.776 | | | |
361
- | pythia-70m | dfloor_M1best | coord_share_bnd_perm | 33 | 0.507 | 0.739 | | | |
362
- | pythia-70m | dfloor_M1best | bnd_perm | 33 | -0.467 | 0.728 | | | |
363
- | pythia-70m | dfloor_M1best | coord_share_bnd_orth | 33 | 0.295 | 0.673 | | | |
364
- | pythia-70m | dfloor_M1best | cka_mean | 33 | 0.432 | 0.662 | | | |
365
- | pythia-70m | dfloor_M1best | bnd_orth | 33 | -0.233 | 0.651 | | | |
366
- | pythia-70m | dfloor_M1best | MULTIVARIATE_ridge_all | 33 | 0.388 | 0.647 | | | |
367
- | pythia-160m | dfloor_M1best | cka_last | 15 | 0.521 | 0.768 | — | — | — |
368
- | pythia-160m | dfloor_M1best | qmd_act_perm | 15 | -0.143 | 0.268 | — | — | — |
369
- | pythia-160m | dfloor_M1best | qmd_act_procrustes | 15 | -0.143 | 0.268 | — | — | — |
370
- | pythia-160m | dfloor_M1best | qmd_act_ot | 15 | -0.189 | 0.286 | — | — | — |
371
- | pythia-160m | dfloor_M1best | bnd_perm | 15 | -0.636 | 0.696 | — | — | — |
372
- | pythia-160m | dfloor_M1best | coord_share_bnd_perm | 15 | 0.496 | 0.696 | — | — | — |
373
- | pythia-160m | dfloor_M1best | MULTIVARIATE_ridge_all | 15 | 0.507 | 0.679 | — | — | — |
374
 
375
  ### Does a predictor fitted on one substrate transfer to another?
376
 
@@ -378,49 +469,49 @@ Leave-one-**size**-out. Predictors are standardised *within* size first, so a pr
378
 
379
  | predictor | outcome | held-out substrate | n | AUROC | null mean | perm p | BH q |
380
  |---|---|---|---|---|---|---|---|
381
- | MULTIVARIATE_ridge_all | rescue_frac | pythia-14m | 36 | 0.352 | 0.500 | 0.925 | 0.992 |
382
- | MULTIVARIATE_ridge_all | rescue_frac | pythia-160m | 15 | 0.571 | 0.496 | 0.346 | 0.630 |
383
- | MULTIVARIATE_ridge_all | rescue_frac | pythia-31m | 36 | 0.667 | 0.498 | 0.041 | 0.328 |
384
- | MULTIVARIATE_ridge_all | rescue_frac | pythia-70m | 33 | 0.559 | 0.502 | 0.291 | 0.583 |
385
- | coord_share_bnd_perm | rescue_frac | pythia-14m | 36 | 0.515 | 0.501 | 0.463 | 0.740 |
386
- | coord_share_bnd_perm | rescue_frac | pythia-160m | 15 | 0.696 | 0.497 | 0.130 | 0.400 |
387
- | coord_share_bnd_perm | rescue_frac | pythia-31m | 36 | 0.710 | 0.501 | 0.026 | 0.260 |
388
- | coord_share_bnd_perm | rescue_frac | pythia-70m | 33 | 0.768 | 0.502 | 0.005 | 0.140 |
389
- | qmd_act_perm | rescue_frac | pythia-14m | 36 | 0.657 | 0.501 | 0.067 | 0.344 |
390
- | qmd_act_perm | rescue_frac | pythia-160m | 15 | 0.429 | 0.500 | 0.693 | 0.977 |
391
- | qmd_act_perm | rescue_frac | pythia-31m | 36 | 0.525 | 0.497 | 0.387 | 0.672 |
392
- | qmd_act_perm | rescue_frac | pythia-70m | 33 | 0.724 | 0.495 | 0.007 | 0.140 |
393
- | cka_mean | rescue_frac | pythia-14m | 36 | 0.599 | 0.495 | 0.129 | 0.400 |
394
- | cka_mean | rescue_frac | pythia-160m | 15 | 0.304 | 0.502 | 0.915 | 0.992 |
395
- | cka_mean | rescue_frac | pythia-31m | 36 | 0.540 | 0.500 | 0.346 | 0.630 |
396
- | cka_mean | rescue_frac | pythia-70m | 33 | 0.298 | 0.497 | 0.972 | 0.992 |
397
- | weight_cosine | rescue_frac | pythia-14m | 36 | 0.580 | 0.506 | 0.242 | 0.566 |
398
- | weight_cosine | rescue_frac | pythia-160m | 15 | 0.714 | 0.505 | 0.081 | 0.344 |
399
- | weight_cosine | rescue_frac | pythia-31m | 36 | 0.704 | 0.500 | 0.018 | 0.240 |
400
- | weight_cosine | rescue_frac | pythia-70m | 33 | 0.467 | 0.496 | 0.627 | 0.962 |
401
-
402
- **SET 4, held out by language pair.** n = 1 language pairs. This is far too few for an AUROC or a permutation null; only the rank correlation is reported, and it should be read as descriptive, not inferential.
403
 
404
  | predictor | Spearman vs realised rescue |
405
  |---|---|
406
  | weight_cosine | -0.400 |
407
- | d_raw | -0.400 |
408
- | qmd_perm | -0.400 |
409
- | coord_share_perm | 0.000 |
410
- | qmd_orth | -0.400 |
411
- | coord_share_orth | 0.000 |
412
- | bnd_raw | 0.200 |
413
- | bnd_perm | 0.200 |
414
- | bnd_orth | 0.200 |
415
- | coord_share_bnd_perm | 0.000 |
416
- | coord_share_bnd_orth | 0.000 |
417
  | cka_mean | -0.400 |
418
- | cka_last | 0.400 |
419
  | qmd_act_perm | 0.400 |
420
  | qmd_act_procrustes | 0.400 |
421
  | qmd_act_ot | 0.400 |
422
- | vocab_overlap | -0.200 |
423
- | weight_cosine_body | -0.200 |
424
 
425
  ### What P0-2 comes to
426
 
@@ -452,7 +543,7 @@ SET 1's main grid uses `pythia-<size>-seed{n}`, which reseeds **both** the initi
452
  |---|---|---|---|---|---|---|---|
453
  | 160m-data | 3 | 3.27 | 3.13 | 3.00 | 3.00 | 3.9% | 0.0139 |
454
  | 160m-weight | 3 | 3.25 | 3.10 | 2.79 | 2.79 | 10.0% | 0.0123 |
455
- | 160m (init+data, main grid) | 20 | 3.25 | 8.66 | 6.64 | 6.17 | 30.4% | 0.0941 |
456
 
457
  Reading: models that differ **only in data order** start far closer together — the naive merge's
458
  Δfloor is a small fraction of the reseeded-init case — and alignment does **nothing** for them,
@@ -467,14 +558,23 @@ init-plus-data-order number, not an init-only one.
467
 
468
  | cell | n | status | what was measured |
469
  |---|---|---|---|
470
- | SET 1 · pythia-14m | 36/36 seed pairs | complete | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; barrier for M0 and M1-perm |
471
- | SET 1 · pythia-70m | 36/36 seed pairs | complete | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; barrier for M0 and M1-perm |
472
- | SET 1 · pythia-160m | 20/36 seed pairs | partial | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; barrier for M0 and M1-perm |
473
- | SET 4 · goldfish eng×X | 1/4 language pairs (nld_Latn) | partial | M0 naive · M1a vocab-transport · M1b/c vocab+unit-aligned (perm/Procrustes) · M1d/e forced-residual · M1f unit-aligned only |
474
- | BLiMP accuracy · SET 1 (English) | pythia-14m: 36/36 pairs, pythia-70m: 19/36 pairs | RAN | 67 paradigms from `nyu-mll/blimp`, minimal-pair sentence-logprob scoring, on the SAME merges as the Δfloor tables |
475
- | MultiBLiMP / any accuracy benchmark · SET 4 (Goldfish) | 0 | **NOT RUN** | No multilingual benchmark harness was close to wired inside this window; deliberately not built from scratch. SET 4's numbers are likelihood only and say nothing about accuracy. |
476
- | B-GPT joint bilingual reference | 0 | **NOT RUN** | Out of window; the merged models are not compared against a jointly-trained bilingual ceiling. |
477
- | Goldfish 160m/other tiers, other language pairs | 0 | NOT RUN | Only the 1000mb tier and the four audit languages. |
 
 
 
 
 
 
 
 
 
478
 
479
  ## Threats to validity, stated plainly
480
 
@@ -496,15 +596,31 @@ init-plus-data-order number, not an init-only one.
496
  ## Files
497
 
498
  ```
499
- results/set1_{14m,70m,160m}.jsonl per-pair raw records (predictors, rungs, barriers, align info)
500
- results/set1_pairs.csv per-pair flat table, SET 1
501
- results/set4_goldfish.jsonl per-language-pair raw records, SET 4
502
- results/set4_pairs.csv per-language-pair flat table, SET 4
503
- results/rung_summary.csv rung x substrate x metric summary
504
- results/predictor_auroc.csv SET 1 predictor table: held-out AUROC, permutation null, BH q
505
- results/set4_predictors.csv SET 4 predictor rank correlations (n=4, descriptive)
506
- figs/set1_dfloor_by_rung.png Δfloor by rung, per size
507
- figs/set1_rescue_vs_predictor.png realised rescue vs coordinate share / CKA
508
- figs/set1_roc.png held-out-by-seed ROC
509
- figs/set4_dfloor.png Δfloor by rung, Goldfish
 
 
 
 
 
 
 
 
 
510
  ```
 
 
 
 
 
 
 
 
5
 
6
  # Compose-audit: putting the alignment map and the merging payoff on the SAME real models
7
 
8
+ _Generated 2026-08-26 20:50 UTC · training-free · code: `/root/compose-audit` · operators/aligners/metrics imported unmodified from `mergeschool.core` (`/root/mergeability`, treated as read-only)._
9
 
10
  ## Read this first: what substrate, and what metric
11
 
12
  | | SET 1 | SET 4 |
13
  |---|---|---|
14
+ | **Substrate** | `EleutherAI/pythia-{14m,31m,70m,160m,410m}-seed{1..9}` (PolyPythia) — real reseeded LMs | `goldfish-models/eng_latn_1000mb` × `{nld,spa,ell,pol}_*_1000mb` — the real bilingual-composition models, GPT-2 arch, 125M |
15
  | **What varies between the two parents** | the init/data-order **seed only**. Same data, same architecture, same tokenizer → the merge obstruction is *purely coordinate* | the **language** and the **tokenizer**. Independently initialised, independently trained |
16
  | **Held-out corpus** | FLORES-200 devtest `eng_Latn` | FLORES-200 devtest, `eng_Latn` + the partner language |
17
+ | **Metric** | Δfloor in **nats/token** vs the better parent; **BLiMP accuracy** on the same merges | Δfloor in **nats per UTF-8 byte** vs the better parent (bytes, because the two parents use different tokenizers and nats/token is not comparable across them); **MultiBLiMP 1.0 accuracy** on the same merges |
18
+ | **What the metric is** | Δfloor is a **likelihood** metric; BLiMP is an **accuracy** metric | Δfloor is a **likelihood** metric; MultiBLiMP is an **accuracy** metric |
19
 
20
+ > **Δfloor is a likelihood metric, not benchmark accuracy and here they come apart.** The audit's
21
+ > sharpest point is that a likelihood rescue has not been shown to transfer to accuracy. We tested
22
+ > that transfer directly, on the same merges, with BLiMP (SET 1) and MultiBLiMP 1.0 (SET 4), and it
23
+ > **does not hold in either direction**: in SET 1 a ~70% Δfloor rescue buys ~0.03 BLiMP accuracy over
24
+ > the naive merge, and in SET 4 a merge whose Δfloor says it is destroyed still scores 0.68 on
25
+ > MultiBLiMP-English. Neither metric may be reported as a proxy for the other. Every table below
26
+ > states which one it is.
27
 
28
 
29
  ## Headline findings
30
 
31
+ 1. **Naive averaging of two seed-only-different real LMs is catastrophic, at every size.** Δfloor 14m: +32.4 · 31m: +20.4 · 70m: +20.2 · 160m: +8.8 · 410m: +6.3 nats/token against parent floors of 3–4.4 nats/token, i.e. above the uniform-over-vocabulary reference of 10.8 for all but the largest. n = 36 / 36 / 36 / 23 / 2 pairs.
32
+ 2. **Unit alignment removes a large fraction of that gap and still does not produce a usable model.** Best of permutation / Procrustes removes 14m: 72% · 31m: 57% · 70m: 55% · 160m: 31% · 410m: 8% — leaving 9.0 · 8.1 · 8.7 · 5.9 · 5.8 nats/token above the better parent.
33
+ 3. **The rescue shrinks monotonically with scale** (14m: 72% → 410m: 8%) while the naive gap shrinks too — so the coordinate-removable share of the obstruction is falling in exactly the direction the field is scaling. (Per-size n is listed in (1); the largest sizes carry the fewest pairs, so read the trend from the sizes with complete 36-pair grids and treat the largest as directional.)
34
  4. **The likelihood rescue does not transfer to accuracy.** On pythia-14m (n=36), parents average 0.652 on BLiMP; the naive merge 0.518 and the aligned merge 0.544, against chance 0.500. A ~70% Δfloor rescue buys ~0.026 accuracy. Pairwise, the two rescues are uncorrelated.
35
+ 5. **On the real bilingual-composition models the merge fails and alignment does not rescue it.** Goldfish eng×{nld,spa,ell,pol}: naive Δfloor on English text +0.91 nats/byte against a 0.81 floor; the best M1 rung +0.90. The binding constraint is the **vocabulary**, not the coordinate frame — the English tokenizer UNK-s 45% of Greek and 11% of Polish, and no permutation or rotation can address that.
36
  6. **…and the accuracy dissociation runs the other way there.** The same likelihood-destroyed Goldfish merges retain 0.68 on MultiBLiMP-English (parent 0.96, chance 0.50). Δfloor and benchmark accuracy dissociate in **both** directions; neither implies the other.
37
  7. **P0-2: the pre-merge predictors do not predict the realised rescue.** Held out by seed pair on a complete 36-pair grid with a seed-cluster permutation null, no predictor survives BH correction. Reported as the negative transfer result it is.
38
  8. **This is not an under-trying artifact.** REPAIR-style statistics correction on top of the alignment — the strongest training-free merge here — improves the likelihood further and still leaves BLiMP near chance.
 
82
  Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **20.17**, permutation-aligned **10.98** nats/token.
83
 
84
 
85
+ ### pythia-160m — 23 seed pairs · mean parent floor **3.255** nats/token · uniform-over-vocabulary reference **10.826** nats/token
86
 
87
  | rung | n | mean nats/tok | mean Δfloor | median Δfloor | best Δfloor | beats naive | % of naive Δfloor removed |
88
  |---|---|---|---|---|---|---|---|
89
+ | M0_naive_avg | 23 | 12.03 | 8.77 | 8.32 | 6.88 | 0/23 | 0.0% |
90
+ | M1_perm_avg | 23 | 9.84 | 6.59 | 6.34 | 5.50 | 21/23 | 23.7% |
91
+ | M1_orth_avg | 23 | 9.41 | 6.16 | 6.11 | 5.15 | 23/23 | 29.2% |
92
+ | M2_task_arith | 23 | 30.47 | 27.22 | 27.31 | 17.88 | 0/23 | -209.7% |
93
+ | M3_ties | 23 | 60.06 | 56.81 | 57.09 | 49.69 | 0/23 | -555.4% |
94
 
95
+ Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **8.76**, permutation-aligned **6.58** nats/token.
96
 
97
 
98
+ ### pythia-410m — 2 seed pairs · mean parent floor **2.970** nats/token · uniform-over-vocabulary reference **10.826** nats/token
99
 
100
  | rung | n | mean nats/tok | mean Δfloor | median Δfloor | best Δfloor | beats naive | % of naive Δfloor removed |
101
  |---|---|---|---|---|---|---|---|
102
+ | M0_naive_avg | 2 | 9.32 | 6.35 | 6.35 | 6.19 | 0/2 | 0.0% |
103
+ | M1_perm_avg | 2 | 8.81 | 5.84 | 5.84 | 5.64 | 2/2 | 7.9% |
104
+ | M1_orth_avg | 2 | 8.95 | 5.98 | 5.98 | 5.81 | 2/2 | 5.8% |
105
+ | M2_task_arith | 2 | 14.69 | 11.72 | 11.72 | 10.37 | 0/2 | -85.4% |
106
+ | M3_ties | 2 | 12.77 | 9.80 | 9.80 | 9.43 | 0/2 | -54.6% |
107
 
108
+ Linear-mode-connectivity barrier (`eval.merge_barrier`): naive **6.31**, permutation-aligned **5.83** nats/token.
109
 
110
 
111
  **What this says.**
 
135
  | pythia-14m | 36 | 4.38 | 32.43 | 69.9% | 50.5% | 72.0% | 0.588 | 0.374 | 0.0652 |
136
  | pythia-31m | 36 | 3.94 | 20.35 | 47.7% | 46.4% | 57.4% | 0.632 | 0.380 | 0.0645 |
137
  | pythia-70m | 36 | 3.63 | 20.16 | 43.9% | 50.4% | 55.1% | 0.671 | 0.428 | 0.0793 |
138
+ | pythia-160m | 23 | 3.26 | 8.77 | 23.7% | 29.2% | 31.3% | 0.766 | 0.786 | 0.0925 |
139
+ | pythia-410m | 2 | 2.97 | 6.35 | 7.9% | 5.8% | 7.9% | 0.381 | 0.342 | 0.0484 |
140
 
141
  The coordinator flagged this from the first two pairs and asked whether it survives the full grid.
142
  **It does, monotonically, across every size we ran.** The naive merge's Δfloor shrinks with scale
 
169
 
170
  At a 46.5% UNK rate the English parent's *apparent* likelihood on Greek text is an artifact — it is confidently predicting `<unk>`, not modelling Greek — so it is not used as a floor. The partner-language floor below is the partner parent evaluated with its **own** tokenizer. The **English-side** column is the clean one (0.07% UNK) and is the primary SET 4 number.
171
 
172
+ Uniform-over-vocabulary reference (a model that has learned nothing), mean over the two languages, in the same units: **eng-nld_Latn** 3.093, **eng-spa_Latn** 2.920, **eng-ell_Grek** 2.964, **eng-pol_Latn** 3.221 nats/byte.
173
 
174
 
175
  **PRIMARY — Δfloor on ENGLISH text vs the English parent (nats/UTF-8 byte).** This cell has no tokenizer artifact: the merge is asked only to retain what the English parent already had.
 
177
  | pair | M0_naive_avg | M1a_vocab_avg | M1b_vocab_perm_avg | M1c_vocab_orth_avg | M1d_vocab_perm_forced | M1e_vocab_orth_forced | M1g_emb_procrustes | M1h_emb_proc_units | M1f_perm_novocab |
178
  |---|---|---|---|---|---|---|---|---|---|
179
  | eng–nld_Latn | 0.889 | 1.056 | 1.058 | 1.058 | 1.167 | 0.990 | 1.085 | 0.975 | 0.891 |
180
+ | eng–spa_Latn | 0.892 | 1.034 | 1.033 | 1.033 | 1.131 | 1.054 | 0.973 | 0.970 | 0.891 |
181
+ | eng–ell_Grek | 0.983 | 1.054 | 1.054 | 1.054 | 1.080 | 1.041 | 0.965 | 1.006 | 0.983 |
182
+ | eng–pol_Latn | 0.859 | 0.976 | 0.976 | 0.976 | 1.093 | 0.985 | 1.057 | 0.972 | 0.859 |
183
+ | **mean of the 4** | **0.906** | **1.030** | **1.030** | **1.030** | **1.118** | **1.018** | **1.020** | **0.981** | **0.906** |
184
+
185
+ Averaged over the four pairs the best M1 rung removes **1.4%** of the naive merge's Δfloor. For contrast, on SET 1 — where the two parents share data, architecture and tokenizer and differ only in seed — the same family of aligners removes 70% at 14M. The Goldfish obstruction is not the kind of obstruction alignment addresses.
186
+
187
 
188
  **Δfloor vs the better parent, mean over the two languages, nats/UTF-8 byte** (lower is better; 0 would mean the merge matches the better parent):
189
 
190
  | pair | vocab overlap | floor eng | floor X (own tok) | M0_naive_avg | M1a_vocab_avg | M1b_vocab_perm_avg | M1c_vocab_orth_avg | M1d_vocab_perm_forced | M1e_vocab_orth_forced | M1g_emb_procrustes | M1h_emb_proc_units | M1f_perm_novocab |
191
  |---|---|---|---|---|---|---|---|---|---|---|---|---|
192
  | eng–nld_Latn | 27.8% | 0.811 | 0.792 | 1.689 | 1.763 | 1.766 | 1.766 | 2.004 | 1.601 | 1.732 | 1.559 | 1.691 |
193
+ | eng–spa_Latn | 23.1% | 0.811 | 0.746 | 1.643 | 1.637 | 1.635 | 1.635 | 1.831 | 1.632 | 1.503 | 1.426 | 1.643 |
194
+ | eng–ell_Grek | 12.9% | 0.811 | 0.428 | 0.844 | 0.942 | 0.943 | 0.943 | 1.491 | 1.353 | 1.078 | 1.202 | 0.844 |
195
+ | eng–pol_Latn | 15.5% | 0.811 | 0.799 | 1.789 | 1.687 | 1.687 | 1.687 | 2.065 | 1.656 | 1.693 | 1.693 | 1.789 |
196
 
197
  **Split by language, and Δ vs naive:**
198
 
 
207
  | eng–nld_Latn | M1g_emb_procrustes | 1.085 | 2.380 | 0.043 |
208
  | eng–nld_Latn | M1h_emb_proc_units | 0.975 | 2.143 | -0.130 |
209
  | eng–nld_Latn | M1f_perm_novocab | 0.891 | 2.491 | 0.002 |
210
+ | eng–spa_Latn | M0_naive_avg | 0.892 | 2.395 | 0.000 |
211
+ | eng–spa_Latn | M1a_vocab_avg | 1.034 | 2.240 | -0.007 |
212
+ | eng–spa_Latn | M1b_vocab_perm_avg | 1.033 | 2.238 | -0.008 |
213
+ | eng–spa_Latn | M1c_vocab_orth_avg | 1.033 | 2.238 | -0.008 |
214
+ | eng–spa_Latn | M1d_vocab_perm_forced | 1.131 | 2.531 | 0.187 |
215
+ | eng–spa_Latn | M1e_vocab_orth_forced | 1.054 | 2.210 | -0.011 |
216
+ | eng–spa_Latn | M1g_emb_procrustes | 0.973 | 2.032 | -0.141 |
217
+ | eng–spa_Latn | M1h_emb_proc_units | 0.970 | 1.883 | -0.217 |
218
+ | eng–spa_Latn | M1f_perm_novocab | 0.891 | 2.396 | -0.000 |
219
+ | eng–ell_Grek | M0_naive_avg | 0.983 | 0.706 | 0.000 |
220
+ | eng–ell_Grek | M1a_vocab_avg | 1.054 | 0.829 | 0.097 |
221
+ | eng–ell_Grek | M1b_vocab_perm_avg | 1.054 | 0.831 | 0.098 |
222
+ | eng–ell_Grek | M1c_vocab_orth_avg | 1.054 | 0.831 | 0.098 |
223
+ | eng–ell_Grek | M1d_vocab_perm_forced | 1.080 | 1.901 | 0.646 |
224
+ | eng–ell_Grek | M1e_vocab_orth_forced | 1.041 | 1.665 | 0.509 |
225
+ | eng–ell_Grek | M1g_emb_procrustes | 0.965 | 1.191 | 0.234 |
226
+ | eng–ell_Grek | M1h_emb_proc_units | 1.006 | 1.397 | 0.358 |
227
+ | eng–ell_Grek | M1f_perm_novocab | 0.983 | 0.704 | -0.001 |
228
+ | eng–pol_Latn | M0_naive_avg | 0.859 | 2.719 | 0.000 |
229
+ | eng–pol_Latn | M1a_vocab_avg | 0.976 | 2.399 | -0.101 |
230
+ | eng–pol_Latn | M1b_vocab_perm_avg | 0.976 | 2.399 | -0.101 |
231
+ | eng–pol_Latn | M1c_vocab_orth_avg | 0.976 | 2.399 | -0.101 |
232
+ | eng–pol_Latn | M1d_vocab_perm_forced | 1.093 | 3.037 | 0.276 |
233
+ | eng–pol_Latn | M1e_vocab_orth_forced | 0.985 | 2.327 | -0.133 |
234
+ | eng–pol_Latn | M1g_emb_procrustes | 1.057 | 2.329 | -0.096 |
235
+ | eng–pol_Latn | M1h_emb_proc_units | 0.972 | 2.414 | -0.096 |
236
+ | eng–pol_Latn | M1f_perm_novocab | 0.859 | 2.719 | 0.000 |
237
 
238
  **Rungs.** `M0_naive_avg` = straight weight average in raw index space (the merge the manuscript
239
  reports as failing). `M1a_vocab_avg` = English/partner embedding + unembedding rows transported into
 
253
  | substrate | n pairs | mean parent acc | better-parent ceiling | M0 naive | M1 permutation | M1 Procrustes | best rung, % of the parents' above-chance margin retained |
254
  |---|---|---|---|---|---|---|---|
255
  | pythia-14m | 36 | 0.652 | 0.664 | 0.518 | 0.533 | 0.530 | 28.5% |
256
+ | pythia-70m | 27 | 0.716 | 0.722 | 0.518 | 0.538 | 0.543 | 24.2% |
257
 
258
  **This is the result the audit asked for, and it is negative.** On pythia-14m the permutation
259
  alignment removes ~70% of the naive merge's Δfloor in nats/token — and the merged model still scores
 
267
  | substrate | n | Spearman(Δfloor rescue, BLiMP rescue) | mean Δfloor rescue (nats/tok) | mean BLiMP rescue (acc) |
268
  |---|---|---|---|---|
269
  | pythia-14m | 36 | 0.139 | 23.44 | 0.0257 |
270
+ | pythia-70m | 27 | 0.206 | 10.94 | 0.0322 |
271
 
272
  ## Did we try hard enough? · REPAIR on top of the alignment
273
 
 
275
 
276
  | substrate | n pairs | rung | mean Δfloor (nats/tok) | median Δfloor | BLiMP accuracy | % of the parents' above-chance margin retained |
277
  |---|---|---|---|---|---|---|
278
+ | pythia-14m | 27 | M0_naive_avg | 32.25 | 30.70 | 0.512 | 7.2% |
279
+ | pythia-14m | 27 | M1_perm_avg | 9.53 | 9.06 | 0.534 | 20.6% |
280
+ | pythia-14m | 27 | M4_perm_repair | 7.72 | 7.10 | 0.532 | 19.0% |
281
+ | pythia-14m | 27 | M5_naive_repair | 32.11 | 30.98 | 0.509 | 5.4% |
282
+ | pythia-14m | 27 | **parents** | 0.00 | 0.00 | 0.666 | 100.0% |
283
 
284
  REPAIR does help the likelihood — it takes a further bite out of the aligned merge's Δfloor, and it
285
  is the best training-free merge in this report. It does **not** change the conclusion. The repaired
 
348
  accuracy standing. Whichever of the two you report, the other does not follow from it.
349
 
350
 
351
+ ## SET 4 · what would SUCCESS look like? The jointly-trained bilingual ceiling
352
+
353
+ A merge that fails is only interpretable against what a bilingual model of the same budget actually achieves. B-GPT (Arnett et al.) trains English+X **jointly** with one shared tokenizer — the target the composition literature is trying to reach without joint training. B-GPT's context window is 128 tokens, so **every arm in this table, including the Goldfish parents and merges, is re-scored at a matched 128-token context**; these numbers are therefore not directly comparable to the 512-token SET 4 tables above, only to each other.
354
+
355
+
356
+ **nats/byte, English** (lower is better)
357
+
358
+ | pair | bgpt_joint_bilingual | goldfish_eng_parent | goldfish_partner_parent | merge_M0_naive | merge_M1a_vocab |
359
+ |---|---|---|---|---|---|
360
+ | eng–nld_Latn | 0.871 | 0.848 | 1.473 | 1.697 | 1.835 |
361
+ | eng–spa_Latn | 0.872 | 0.848 | 1.609 | 1.685 | 1.834 |
362
+
363
+ **nats/byte, partner** (lower is better)
364
+
365
+ | pair | bgpt_joint_bilingual | goldfish_eng_parent | goldfish_partner_parent | merge_M0_naive | merge_M1a_vocab |
366
+ |---|---|---|---|---|---|
367
+ | eng–nld_Latn | 0.898 | 2.336 | 0.823 | 3.281 | 3.302 |
368
+ | eng–spa_Latn | 0.889 | 1.940 | 0.777 | 3.126 | 2.969 |
369
+
370
+ **MultiBLiMP-English** (higher is better, chance 0.500)
371
+
372
+ | pair | bgpt_joint_bilingual | goldfish_eng_parent | goldfish_partner_parent | merge_M0_naive | merge_M1a_vocab |
373
+ |---|---|---|---|---|---|
374
+ | eng–nld_Latn | 0.966 | 0.962 | 0.694 | 0.673 | 0.601 |
375
+ | eng–spa_Latn | 0.968 | 0.962 | 0.656 | 0.677 | 0.727 |
376
+
377
+ **MultiBLiMP-partner** (higher is better, chance 0.500)
378
+
379
+ | pair | bgpt_joint_bilingual | goldfish_eng_parent | goldfish_partner_parent | merge_M0_naive | merge_M1a_vocab |
380
+ |---|---|---|---|---|---|
381
+ | eng–nld_Latn | 0.952 | 0.598 | 0.970 | 0.655 | 0.646 |
382
+ | eng–spa_Latn | 0.879 | 0.502 | 0.926 | 0.500 | 0.532 |
383
+
384
+ This is the cleanest single statement the audit can make about SET 4. A jointly trained bilingual
385
+ model of the same parameter budget is **good at both languages at once** — near the monolingual
386
+ parents on likelihood and on MultiBLiMP. The merge of two monolingual models is not close, on either
387
+ metric, under any rung, in either anchoring direction. The gap is not a coordinate gap that a better
388
+ aligner might close; the joint model also has a *shared vocabulary*, which is exactly the axis the
389
+ alignment group cannot act on.
390
+
391
+
392
+ ## SET 4 · reverse direction (the partner language is the anchor)
393
+
394
+ Identical rungs, but the merged model lives in the **partner** language's tokenizer and residual basis and English is transported into it. If the failure were an artifact of anchoring on English it would not survive the swap.
395
+
396
+ | anchor | floor (anchor lang) | floor (English) | M0_naive_avg | M1a_vocab_avg | M1b_vocab_perm_avg | M1c_vocab_orth_avg | M1e_vocab_orth_forced | M1g_emb_procrustes |
397
+ |---|---|---|---|---|---|---|---|---|
398
+ | nld_Latn | 0.792 | 0.811 | 1.342 | 1.335 | 1.337 | 1.337 | 1.384 | 1.425 |
399
+
400
+ Δfloor, mean over the two languages, nats/UTF-8 byte. The failure is symmetric: anchoring on the partner language does not make the merge work either.
401
+
402
+
403
  ## P0-2 · Do the pre-merge predictors predict the realised rescue?
404
 
405
  Showing, per substrate and per outcome, the **six predictors with the largest |AUROC − 0.5|** plus the multivariate ridge. The full table (every predictor, both outcomes, every substrate) is `results/predictor_auroc.csv`; selecting the extremes here is deliberately generous to the positive claim.
406
 
407
  | substrate | outcome | predictor | n | Spearman | AUROC (held out by seed) | null mean | perm p | BH q |
408
  |---|---|---|---|---|---|---|---|---|
409
+ | pythia-14m | rescue_frac | bnd_perm | 36 | 0.012 | 0.296 | 0.497 | 0.981 | 0.998 |
410
+ | pythia-14m | rescue_frac | qmd_orth | 36 | 0.093 | 0.676 | 0.497 | 0.037 | 0.251 |
411
+ | pythia-14m | rescue_frac | qmd_perm | 36 | 0.077 | 0.664 | 0.498 | 0.051 | 0.261 |
412
+ | pythia-14m | rescue_frac | qmd_act_perm | 36 | -0.207 | 0.657 | 0.500 | 0.055 | 0.261 |
413
+ | pythia-14m | rescue_frac | qmd_act_procrustes | 36 | -0.207 | 0.657 | 0.500 | 0.055 | 0.261 |
414
+ | pythia-14m | rescue_frac | cka_last | 36 | -0.478 | 0.651 | 0.499 | 0.067 | 0.268 |
415
+ | pythia-14m | rescue_frac | MULTIVARIATE_ridge_all | 36 | 0.254 | 0.620 | 0.501 | 0.114 | 0.278 |
416
+ | pythia-31m | rescue_frac | bnd_perm | 36 | -0.490 | 0.750 | 0.506 | 0.011 | 0.251 |
417
+ | pythia-31m | rescue_frac | coord_share_bnd_perm | 36 | 0.427 | 0.710 | 0.505 | 0.025 | 0.251 |
418
+ | pythia-31m | rescue_frac | weight_cosine | 36 | 0.274 | 0.704 | 0.504 | 0.029 | 0.251 |
419
+ | pythia-31m | rescue_frac | d_raw | 36 | -0.321 | 0.704 | 0.505 | 0.025 | 0.251 |
420
+ | pythia-31m | rescue_frac | bnd_raw | 36 | -0.391 | 0.701 | 0.506 | 0.032 | 0.251 |
421
+ | pythia-31m | rescue_frac | qmd_perm | 36 | -0.493 | 0.691 | 0.505 | 0.048 | 0.261 |
422
+ | pythia-31m | rescue_frac | MULTIVARIATE_ridge_all | 36 | 0.403 | 0.707 | 0.505 | 0.035 | 0.251 |
423
+ | pythia-70m | rescue_frac | coord_share_bnd_perm | 36 | 0.462 | 0.806 | 0.500 | 0.002 | 0.133 |
424
+ | pythia-70m | rescue_frac | bnd_perm | 36 | -0.404 | 0.787 | 0.501 | 0.003 | 0.133 |
425
+ | pythia-70m | rescue_frac | coord_share_orth | 36 | 0.341 | 0.722 | 0.497 | 0.033 | 0.251 |
426
+ | pythia-70m | rescue_frac | qmd_orth | 36 | -0.373 | 0.713 | 0.497 | 0.067 | 0.268 |
427
+ | pythia-70m | rescue_frac | coord_share_perm | 36 | 0.356 | 0.698 | 0.500 | 0.065 | 0.268 |
428
+ | pythia-70m | rescue_frac | qmd_perm | 36 | -0.357 | 0.688 | 0.500 | 0.084 | 0.268 |
429
+ | pythia-70m | rescue_frac | MULTIVARIATE_ridge_all | 36 | 0.387 | 0.688 | 0.499 | 0.080 | 0.268 |
430
+ | pythia-160m | rescue_frac | qmd_orth | 23 | -0.592 | 0.803 | — | — | — |
431
+ | pythia-160m | rescue_frac | coord_share_orth | 23 | 0.445 | 0.795 | — | — | — |
432
+ | pythia-160m | rescue_frac | qmd_perm | 23 | -0.610 | 0.773 | — | — | — |
433
+ | pythia-160m | rescue_frac | coord_share_perm | 23 | 0.485 | 0.773 | — | — | — |
434
+ | pythia-160m | rescue_frac | bnd_orth | 23 | -0.302 | 0.750 | — | — | — |
435
+ | pythia-160m | rescue_frac | coord_share_bnd_orth | 23 | 0.265 | 0.750 | — | — | — |
436
+ | pythia-160m | rescue_frac | MULTIVARIATE_ridge_all | 23 | 0.342 | 0.598 | — | — | — |
437
  | pythia-14m | dfloor_M1best | bnd_orth | 36 | -0.000 | 0.204 | 0.502 | 1.000 | 1.000 |
438
  | pythia-14m | dfloor_M1best | bnd_perm | 36 | -0.002 | 0.222 | 0.502 | 0.997 | 1.000 |
439
+ | pythia-14m | dfloor_M1best | coord_share_orth | 36 | -0.457 | 0.738 | 0.495 | 0.015 | 0.251 |
440
+ | pythia-14m | dfloor_M1best | coord_share_perm | 36 | -0.445 | 0.735 | 0.495 | 0.016 | 0.251 |
441
+ | pythia-14m | dfloor_M1best | qmd_orth | 36 | 0.438 | 0.725 | 0.496 | 0.021 | 0.251 |
442
+ | pythia-14m | dfloor_M1best | coord_share_bnd_perm | 36 | -0.155 | 0.290 | 0.503 | 0.977 | 0.998 |
443
+ | pythia-14m | dfloor_M1best | MULTIVARIATE_ridge_all | 36 | 0.539 | 0.778 | 0.497 | 0.003 | 0.133 |
444
+ | pythia-31m | dfloor_M1best | qmd_orth | 36 | 0.289 | 0.670 | 0.502 | 0.101 | 0.268 |
445
+ | pythia-31m | dfloor_M1best | coord_share_orth | 36 | -0.271 | 0.670 | 0.503 | 0.103 | 0.268 |
446
+ | pythia-31m | dfloor_M1best | qmd_perm | 36 | 0.243 | 0.633 | 0.503 | 0.166 | 0.322 |
447
+ | pythia-31m | dfloor_M1best | coord_share_perm | 36 | -0.230 | 0.633 | 0.503 | 0.166 | 0.322 |
448
+ | pythia-31m | dfloor_M1best | bnd_raw | 36 | 0.163 | 0.633 | 0.503 | 0.132 | 0.299 |
449
+ | pythia-31m | dfloor_M1best | bnd_orth | 36 | 0.114 | 0.611 | 0.501 | 0.186 | 0.343 |
450
+ | pythia-31m | dfloor_M1best | MULTIVARIATE_ridge_all | 36 | -0.111 | 0.500 | 0.501 | 0.516 | 0.647 |
451
+ | pythia-70m | dfloor_M1best | coord_share_bnd_perm | 36 | 0.529 | 0.713 | 0.501 | 0.037 | 0.251 |
452
+ | pythia-70m | dfloor_M1best | bnd_perm | 36 | -0.485 | 0.704 | 0.502 | 0.033 | 0.251 |
453
+ | pythia-70m | dfloor_M1best | cka_last | 36 | 0.476 | 0.691 | 0.499 | 0.090 | 0.268 |
454
+ | pythia-70m | dfloor_M1best | cka_mean | 36 | 0.427 | 0.667 | 0.501 | 0.105 | 0.268 |
455
+ | pythia-70m | dfloor_M1best | qmd_act_perm | 36 | -0.433 | 0.667 | 0.501 | 0.103 | 0.268 |
456
+ | pythia-70m | dfloor_M1best | qmd_act_procrustes | 36 | -0.433 | 0.667 | 0.501 | 0.103 | 0.268 |
457
+ | pythia-70m | dfloor_M1best | MULTIVARIATE_ridge_all | 36 | 0.386 | 0.599 | 0.500 | 0.207 | 0.347 |
458
+ | pythia-160m | dfloor_M1best | bnd_perm | 23 | -0.591 | 0.818 | — | — | — |
459
+ | pythia-160m | dfloor_M1best | coord_share_bnd_perm | 23 | 0.445 | 0.773 | — | — | — |
460
+ | pythia-160m | dfloor_M1best | bnd_orth | 23 | -0.587 | 0.765 | — | — | — |
461
+ | pythia-160m | dfloor_M1best | coord_share_bnd_orth | 23 | 0.489 | 0.742 | — | — | — |
462
+ | pythia-160m | dfloor_M1best | cka_last | 23 | 0.386 | 0.712 | — | — | — |
463
+ | pythia-160m | dfloor_M1best | cka_mean | 23 | -0.324 | 0.697 | — | — | — |
464
+ | pythia-160m | dfloor_M1best | MULTIVARIATE_ridge_all | 23 | 0.585 | 0.735 | — | — | — |
465
 
466
  ### Does a predictor fitted on one substrate transfer to another?
467
 
 
469
 
470
  | predictor | outcome | held-out substrate | n | AUROC | null mean | perm p | BH q |
471
  |---|---|---|---|---|---|---|---|
472
+ | MULTIVARIATE_ridge_all | rescue_frac | pythia-14m | 36 | 0.349 | 0.500 | 0.932 | 0.977 |
473
+ | MULTIVARIATE_ridge_all | rescue_frac | pythia-160m | 23 | 0.720 | 0.500 | 0.037 | 0.209 |
474
+ | MULTIVARIATE_ridge_all | rescue_frac | pythia-31m | 36 | 0.701 | 0.496 | 0.019 | 0.152 |
475
+ | MULTIVARIATE_ridge_all | rescue_frac | pythia-70m | 36 | 0.556 | 0.500 | 0.291 | 0.612 |
476
+ | coord_share_bnd_perm | rescue_frac | pythia-14m | 36 | 0.515 | 0.507 | 0.480 | 0.799 |
477
+ | coord_share_bnd_perm | rescue_frac | pythia-160m | 23 | 0.606 | 0.499 | 0.198 | 0.497 |
478
+ | coord_share_bnd_perm | rescue_frac | pythia-31m | 36 | 0.710 | 0.500 | 0.011 | 0.152 |
479
+ | coord_share_bnd_perm | rescue_frac | pythia-70m | 36 | 0.806 | 0.495 | 0.001 | 0.040 |
480
+ | qmd_act_perm | rescue_frac | pythia-14m | 36 | 0.657 | 0.494 | 0.045 | 0.209 |
481
+ | qmd_act_perm | rescue_frac | pythia-160m | 23 | 0.500 | 0.497 | 0.507 | 0.812 |
482
+ | qmd_act_perm | rescue_frac | pythia-31m | 36 | 0.525 | 0.498 | 0.399 | 0.725 |
483
+ | qmd_act_perm | rescue_frac | pythia-70m | 36 | 0.676 | 0.504 | 0.031 | 0.206 |
484
+ | cka_mean | rescue_frac | pythia-14m | 36 | 0.599 | 0.498 | 0.155 | 0.442 |
485
+ | cka_mean | rescue_frac | pythia-160m | 23 | 0.455 | 0.498 | 0.649 | 0.928 |
486
+ | cka_mean | rescue_frac | pythia-31m | 36 | 0.540 | 0.500 | 0.338 | 0.675 |
487
+ | cka_mean | rescue_frac | pythia-70m | 36 | 0.346 | 0.502 | 0.937 | 0.977 |
488
+ | weight_cosine | rescue_frac | pythia-14m | 36 | 0.580 | 0.505 | 0.232 | 0.545 |
489
+ | weight_cosine | rescue_frac | pythia-160m | 23 | 0.636 | 0.498 | 0.141 | 0.433 |
490
+ | weight_cosine | rescue_frac | pythia-31m | 36 | 0.704 | 0.497 | 0.014 | 0.152 |
491
+ | weight_cosine | rescue_frac | pythia-70m | 36 | 0.494 | 0.504 | 0.528 | 0.813 |
492
+
493
+ **SET 4, held out by language pair.** n = 4 language pairs. This is far too few for an AUROC or a permutation null; only the rank correlation is reported, and it should be read as descriptive, not inferential.
494
 
495
  | predictor | Spearman vs realised rescue |
496
  |---|---|
497
  | weight_cosine | -0.400 |
498
+ | d_raw | 0.400 |
499
+ | qmd_perm | 0.400 |
500
+ | coord_share_perm | 0.800 |
501
+ | qmd_orth | 0.400 |
502
+ | coord_share_orth | 0.800 |
503
+ | bnd_raw | 0.800 |
504
+ | bnd_perm | 0.800 |
505
+ | bnd_orth | 0.800 |
506
+ | coord_share_bnd_perm | 0.800 |
507
+ | coord_share_bnd_orth | 0.800 |
508
  | cka_mean | -0.400 |
509
+ | cka_last | -0.400 |
510
  | qmd_act_perm | 0.400 |
511
  | qmd_act_procrustes | 0.400 |
512
  | qmd_act_ot | 0.400 |
513
+ | vocab_overlap | -0.800 |
514
+ | weight_cosine_body | -0.800 |
515
 
516
  ### What P0-2 comes to
517
 
 
543
  |---|---|---|---|---|---|---|---|
544
  | 160m-data | 3 | 3.27 | 3.13 | 3.00 | 3.00 | 3.9% | 0.0139 |
545
  | 160m-weight | 3 | 3.25 | 3.10 | 2.79 | 2.79 | 10.0% | 0.0123 |
546
+ | 160m (init+data, main grid) | 23 | 3.26 | 8.77 | 6.59 | 6.16 | 31.3% | 0.0925 |
547
 
548
  Reading: models that differ **only in data order** start far closer together — the naive merge's
549
  Δfloor is a small fraction of the reseeded-init case — and alignment does **nothing** for them,
 
558
 
559
  | cell | n | status | what was measured |
560
  |---|---|---|---|
561
+ | SET 1 Δfloor · pythia-14m | 36/36 seed pairs | complete | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; LMC barrier for M0 and M1-perm |
562
+ | SET 1 Δfloor · pythia-31m | 36/36 seed pairs | complete | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; LMC barrier for M0 and M1-perm |
563
+ | SET 1 Δfloor · pythia-70m | 36/36 seed pairs | complete | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; LMC barrier for M0 and M1-perm |
564
+ | SET 1 Δfloor · pythia-160m | 23/36 seed pairs | partial | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; LMC barrier for M0 and M1-perm |
565
+ | SET 1 Δfloor · pythia-410m | 2/15 seed pairs | partial | M0 naive · M1 permutation · M1 Procrustes · M2 task-arithmetic · M3 TIES; LMC barrier for M0 and M1-perm |
566
+ | SET 1 control · pythia-160m-data | 3/3 pairs | complete | init-seed-only vs data-order-only, same rungs |
567
+ | SET 1 control · pythia-160m-weight | 3/3 pairs | complete | init-seed-only vs data-order-only, same rungs |
568
+ | SET 1 accuracy · BLiMP | pythia-14m: 36/36, pythia-70m: 27/36 | RAN | 67 paradigms from `nyu-mll/blimp`, minimal-pair sentence-logprob scoring, on the SAME merges |
569
+ | SET 1 · REPAIR rung | pythia-14m: 27/36 | RAN | M4 = permutation-aligned average + pre-activation statistics repair; M5 = naive + repair; Δfloor and BLiMP on the same merges |
570
+ | SET 4 Δfloor · English-anchored | 4/4 language pairs (nld_Latn, spa_Latn, ell_Grek, pol_Latn) | complete | M0 naive · M1a vocab-transport · M1b/c vocab+unit-aligned · M1d/e forced-residual · M1f units-only · M1g/h embedding-row Procrustes |
571
+ | SET 4 Δfloor · partner-anchored (reverse) | 1/4 language pairs | partial | same rungs, roles swapped |
572
+ | SET 4 accuracy · MultiBLiMP 1.0 | 4/4 language pairs | RAN | `jumelet/multiblimp`, English + partner, on the SAME merges; UNK rate reported per cell |
573
+ | SET 4 · jointly-trained bilingual ceiling | 2/4 language pairs | RAN | `catherinearnett/B-GPT_en_X_simultaneous` vs the Goldfish parents and merges, all scored at a matched 128-token context |
574
+ | SET 4 · task-arithmetic / TIES | 0 | **NOT APPLICABLE** | Both operators need a shared ancestor. Two independently trained monolingual Goldfish models have none, and with one parent as a pseudo-base the operators reduce to returning the other parent. Excluded on definition, not on time. |
575
+ | SET 1 · pythia-410m full grid | 2/36 possible pairs | partial | 6 seeds only (15 possible pairs) and a reduced eval budget; the per-pair alignment cost is ~9 min at this width. Treat 410m as directional. |
576
+ | Goldfish other tiers / other languages | 0 | NOT RUN | Only the 1000mb tier and the four audit languages. |
577
+ | Any downstream task beyond BLiMP/MultiBLiMP | 0 | NOT RUN | Both benchmarks are minimal-pair grammaticality tests. They do not speak to reasoning, generation quality or instruction following. |
578
 
579
  ## Threats to validity, stated plainly
580
 
 
596
  ## Files
597
 
598
  ```
599
+ results/set1_{14m,31m,70m,160m,410m}.jsonl SET 1 per-pair raw records (predictors, rungs, barriers)
600
+ results/set1_pairs.csv SET 1 per-pair flat table
601
+ results/abl_160m-{weight,data}.jsonl init-seed-only vs data-order-only control
602
+ results/blimp_{size}.jsonl, blimp_pairs.csv SET 1 BLiMP accuracy, per pair and per rung
603
+ results/repair_{size}.jsonl REPAIR rung (Δfloor + BLiMP on the same merges)
604
+ results/set4_goldfish.jsonl, set4_pairs.csv SET 4 Δfloor, English-anchored
605
+ results/set4_reverse.jsonl SET 4 Δfloor, partner-language-anchored
606
+ results/set4_multiblimp.jsonl SET 4 MultiBLiMP accuracy
607
+ results/set4_tokenizer_diag.json UNK rates / bytes-per-token per (tokenizer, language)
608
+ results/rung_summary.csv rung x substrate x metric summary
609
+ results/predictor_auroc.csv P0-2: held-out-by-seed AUROC, seed-cluster null, BH q
610
+ results/predictor_transfer_across_size.csv P0-2: leave-one-substrate-out transfer
611
+ results/set4_predictors.csv P0-2 on SET 4 (n=4, descriptive only)
612
+ figs/set1_dfloor_by_rung.png Δfloor by rung, per size
613
+ figs/set1_scale_trend.png obstruction and rescue vs model size
614
+ figs/set1_rescue_vs_predictor.png realised rescue vs coordinate share / CKA
615
+ figs/set1_roc.png held-out-by-seed ROC
616
+ figs/set1_blimp_dissociation.png likelihood rescue vs accuracy rescue
617
+ figs/set4_dfloor.png Δfloor by rung, Goldfish
618
+ code/*.py every script that produced the above
619
  ```
620
+
621
+ **Reproducing.** `common.py` holds the corpora and evaluation; `gpt2_align.py` holds the GPT-2
622
+ (Conv1D) symmetry factors that `mergeschool.core.alignment`'s row-major aligners do not cover; the
623
+ `set1_*`/`set4_*` scripts are the drivers, each with a resumable JSONL ledger; `analyze.py` builds
624
+ the tables and figures and `make_report.py` writes this document. Merge operators, aligners, quotient
625
+ metrics and the barrier are imported unmodified from `mergeschool.core`.
626
+