LatentPort: Beyond KV Cache - Cross-Model Transfer of Recurrent Memory in Hybrid Language Models: A 4B-to-9B Hybrid-State Handoff Without Target Prefix Replay

arXiv cs.CL Papers

Summary

The paper introduces LatentPort, a method for transferring persistent recurrent state from a 4B to a 9B hybrid language model without the receiver re-reading context, demonstrating improved performance with minimal correction and near-native continuation.

arXiv:2609.25053v1 Announce Type: new Abstract: Can one language model hand its live memory to another without the receiver rereading the context? We demonstrate useful persistent hybrid-state transfer across one architecture-matched Qwen3.5 4B-to-9B sibling pair. To our knowledge, this is the first demonstrated cross-model handoff of persistent recurrent inference state between differently sized hybrid language models without target prefix replay. Translated attention KV alone leaves a large gap; adding the Gated DeltaNet (GDN) persistent-state package lowers teacher-forced negative log-likelihood (NLL), the average next-token log-loss, by 0.747 nats/token (95% paired document bootstrap CI [0.6921, 0.8047]), improving all 64 PG19 documents. Direct recurrent and convolution reuse outperforms the tested learned GDN maps, consistent with partial functional compatibility of persistent-state coordinates. A fresh component factorial selects translated KV with direct recurrent and convolution state. An additional 434,176-parameter correction improves that base on 64 fresh web documents: continuation loss is 0.076 nats/token above native 9B (excess NLL), Jensen-Shannon (JS) divergence is 0.022, and native context recovery (NCR) is 0.918. Corrected 9B significantly beats continued 4B inference while processing zero historical prefix tokens. Evidence covers one direction, one geometry-matched Base-model pair, and 4K teacher-forced continuation; the near-native gate failed, the 16K branch was not run, and free-generation equivalence and a general state interface remain unproven.
Original Article
View Cached Full Text

Cached at: 09/23/26, 09:10 AM

# 1What crosses the model boundary. The selected handoff translates attention KV, directly reuses GDN recurrent matrices and convolution history, and applies a small additional residual correction before installing target-compatible persistent state into the 9B runtime. The receiver processes a real bridge token and subsequent continuation, with zero historical prefix tokens. Matched geometry permits copying despite different hidden widths and weights; usefulness is tested behaviorally. This schematic does not measure latency.
Source: [https://arxiv.org/html/2609.25053](https://arxiv.org/html/2609.25053)
LatentPort: Beyond KV Cache \- Cross\-Model Transfer of Recurrent Memory in Hybrid Language Models

A 4B→\\to9B Hybrid\-State Handoff Without Target Prefix Replay

Simon P\. Villani

Abstract

Can one language model hand its live memory to another without the receiver rereading the context? We demonstrate useful persistent hybrid\-state transfer across one architecture\-matched Qwen3\.5 4B→\\to9B sibling pair\. To our knowledge, this is the first demonstrated cross\-model handoff of persistent recurrent inference state between differently sized hybrid language models without target prefix replay\. Translated attention KV alone leaves a large gap; adding the Gated DeltaNet \(GDN\) persistent\-state package lowers teacher\-forced negative log\-likelihood \(NLL\), the average next\-token log\-loss, by 0\.747 nats/token \(95% paired document bootstrap CI \[0\.6921, 0\.8047\]\), improving all 64 PG19 documents\. Direct recurrent and convolution reuse outperforms the tested learned GDN maps, consistent with partial functional compatibility of persistent\-state coordinates\. A fresh component factorial selects translated KV with direct recurrent and convolution state\. An additional rank\-4 correction with 434,176 trainable parameters improves that base on 64 fresh web documents: continuation loss is 0\.076 nats/token above native 9B \(excess NLL\), Jensen–Shannon \(JS\) divergence is 0\.022, and native context recovery \(NCR\) is 0\.918\. Corrected 9B significantly beats continued 4B inference while processing zero historical prefix tokens\. Evidence covers one direction, one geometry\-matched Base\-model pair, and 4K teacher\-forced continuation; the near\-native gate failed, the 16K branch was not run, and free\-generation equivalence and a general state interface remain unproven\.

Figure 1:What crosses the model boundary\.The selected handoff translates attention KV, directly reuses GDN recurrent matrices and convolution history, and applies a small additional residual correction before installing target\-compatible persistent state into the 9B runtime\. The receiver processes a real bridge token and subsequent continuation, with*zero historical prefix tokens*\. Matched geometry permits copying despite different hidden widths and weights; usefulness is tested behaviorally\. This schematic does not measure latency\.Reading the figure\.Excess NLL is a condition’s NLL minus native 9B NLL on the same continuation: 0 matches native continuation loss, and positive values are worse\.

Figure 2:Beyond KV, then a corrected full\-state handoff\.\(A\) Adding the full translated GDN persistent\-state package to fixed translated KV improves all 64 paired PG19 documents, lowering NLL by 0\.7473 nats/token \(95% CI \[0\.6921, 0\.8047\]\)\. The mean per\-document reduction of KV\-only excess NLL is 79\.7%; recurrent matrices, convolution history, and initialization semantics are not isolated in this contrast\. \(B\) On 64 different FineWeb\-Edu test documents, the corrected handoff beats continued 4B inference by 0\.0521 nats/token \(95% CI \[0\.0185, 0\.0843\]\)\. The corrected handoff recovers 91\.8% of native 9B’s prefix\-derived NLL improvement relative to empty 9B; this is context\-benefit recovery, not accuracy\. Points are document means; intervals concern paired differences\. Both experiments score 64 teacher\-forced targets after a 4K prefix\. Panel scales and corpora differ\.## 1 Introduction

Switching models usually requires the receiver to reread the historical prefix and rebuild inference state\. Cross\-model KV translation can avoid this repetition in full\-attention models\[[2](https://arxiv.org/html/2609.25053#bib.bib5),[14](https://arxiv.org/html/2609.25053#bib.bib7),[5](https://arxiv.org/html/2609.25053#bib.bib6)\]\.

Hybrids retain more than KV: full\-attention layers keep token\-indexed keys and values, while Gated DeltaNet \(GDN\) layers keep recurrent matrices and convolution history\[[17](https://arxiv.org/html/2609.25053#bib.bib1)\]\. KV\-only transfer leaves this persistent memory behind\.

Can that memory cross a model boundary? The source writes it with its own projections and gates; the receiver must read and update it with different weights\. Matching shapes permit copying, but do not establish usefulness\.

Qwen3\.5\-4B\-Base and Qwen3\.5\-9B\-Base differ substantially in parameter count and hidden width \(2,560 versus 4,096\), yet their GDN persistent\-state geometry matches exactly\.*Direct recurrent and convolution reuse outperforms the tested learned GDN translation*\. This is consistent with a partially shared functional coordinate system for persistent recurrent memory in the tested sibling pair\.

Two frozen experiments measure teacher\-forced negative log\-likelihood \(NLL\): the average negative log\-probability assigned to observed next tokens; lower is better\. A nat is the natural\-logarithm unit of information, so nats/token is average log\-loss per predicted token\. Adding the GDN package to translated KV lowers NLL by 0\.747 nats/token, with all 64 test documents improving\. Component selection and an additional 434,176\-parameter correction yield a 9B handoff that significantly beats continued 4B, with zero historical target\-prefix tokens \(Figures[1](https://arxiv.org/html/2609.25053#S0.F1)–[2](https://arxiv.org/html/2609.25053#S0.F2)\)\.

Evidence is limited to one directed, geometry\-matched Base\-model pair, 4K prefixes, and 64 teacher\-forced targets per document\. The near\-native gate failed; no 16K, free\-generation, downstream\-task, or general\-interface result follows\.

The specific first demonstration\.Cross\-model KV transfer, hidden\-state messaging, external memory reuse, and same\-model recurrent cache reuse are established directions \(Section[5](https://arxiv.org/html/2609.25053#S5)\)\. Here, a differently sized hybrid receiver directly consumes persistent recurrent inference state written by another language model, without replaying the historical prefix\. To our knowledge, prior work has not demonstrated cross\-model transfer of built\-in persistent recurrent inference state in an attention–recurrent hybrid language model without target prefix replay\. Our contributions are:

- •Beyond\-KV information\.A controlled intervention establishes a substantial GDN\-package contribution beyond fixed translated KV\.
- •Functional compatibility\.Direct recurrent and convolution reuse beats tested learned maps across differently sized siblings\.
- •A constructive handoff\.Component selection and compact correction improve continuation over continued 4B without target prefix replay\.
- •Controlled evidence\.Paired document uncertainty, donor controls, frozen splits, and restoration checks support the result\.

## 2 Hybrid State and the Handoff Mechanism

### 2\.1 Matched geometry, different models

Both models repeat three GDN layers followed by one full\-attention layer \(Table[1](https://arxiv.org/html/2609.25053#S2.T1)\)\. GDN combines gated forgetting with a delta\-rule memory update\[[17](https://arxiv.org/html/2609.25053#bib.bib1)\]; in a conceptual value\-by\-key orientation,

S¯t\\displaystyle\\bar\{S\}\_\{t\}=αt​St−1,\\displaystyle=\\alpha\_\{t\}S\_\{t\-1\},\(1\)St\\displaystyle S\_\{t\}=S¯t\+βt​\(vt−S¯t​kt\)​kt⊤\.\\displaystyle=\\bar\{S\}\_\{t\}\+\\beta\_\{t\}\(v\_\{t\}\-\\bar\{S\}\_\{t\}k\_\{t\}\)k\_\{t\}^\{\\top\}\.\(2\)The runtime may store the transpose\. Its persistent state also includes convolution history used to construct recurrent inputs\. Both the accumulated matrix and these local histories can affect continuation\.

Table 1:Runtime\-verified correspondence\. State shapes omit batch and are per GDN layer; each attention K or V tensor is4×L×2564\\times L\\times 256\. Persistent geometry matches even though model size and hidden width differ\.Exact persistent geometry was a prerequisite for the experiment\. Layer and head indices correspond directly; there is no cropping, padding, tiling, or learned index alignment\. This correspondence makes direct installation mechanically valid but does not establish functional equivalence of states\.

### 2\.2 What is installed and what is replayed

After prefixx1:Lx\_\{1:L\}, write the source state as

ℋ4\(x1:L\)=\(K4,R4,C4,m4\),\\mathcal\{H\}\_\{4\}\(x\_\{1:L\}\)=\(K\_\{4\},R\_\{4\},C\_\{4\},m\_\{4\}\),\(3\)whereKKincludes attention keys and values,RRthe recurrent matrices,CCthe convolution buffers, andmmthe bookkeeping\. Direct reuse or learned maps produce target\-shaped components; deterministic runtime construction supplies metadata\. Installation uses fresh cache objects and cloned storage\.

The source readsL=4096L=4096historical tokens\. The receiver’s first input is the real next tokenxL\+1x\_\{L\+1\}, whose logits predict the first of 64 scored targets,xL\+2:L\+65x\_\{L\+2:L\+65\}\. This bridge is observed document text, not a learned prompt or historical replay\. Every condition uses the same absolute positions and continuation schedule\. Native target prefix processing supplies the baseline and offline training supervision; it is absent from the handoff path\.

#### A package intervention, not recurrent matrices alone\.

KV\-only leaves both GDN components fresh and uninitialized\. Installing GDN state supplies recurrent matrices, convolution history, and correct initialization semantics together; initialized zero buffers would take a different runtime branch\. The primary contrast therefore measures the*GDN persistent\-state package*\. Its full effect cannot be attributed to recurrent matrices alone\.

### 2\.3 Component translation and direct reuse

Experiment 1 fits separate maps to paired source/target state\. Attention K and V use ridge maps per layer, KV head, and role, with keys de\-rotated before mapping and re\-rotated for the target\. For recurrent state, each layer/head uses

S^9=μ9\+A⁡\(S4−μ4\)​B⊤\.\\widehat\{S\}\_\{9\}=\\mu\_\{9\}\+A\(S\_\{4\}\-\\mu\_\{4\}\)B^\{\\top\}\.\(4\)Convolution buffers use grouped linear ridge maps\. Regularization and permitted normalization are selected by validation tensor error, then frozen\. Appendix[C](https://arxiv.org/html/2609.25053#A3)specifies the grid and positional inversion\. Full translation mapsK,R,CK,R,C; the direct\-GDN alternative uses the same translatedKKand copiesR,CR,C\.

Experiment 2 evaluates all eight direct/translated choices\. A code lists\(K,R,C\)\(K,R,C\), with D for direct and T for translated\. Validation selection uses mean excess NLL, a frozen 0\.01\-nat tie tolerance, then fewer translated components and lexical order\. The selected TDD base translates KV and directly reuses both GDN components\.

### 2\.4 An additional behavioral correction

The correction is identity\-anchored and leaves both language models frozen\. For a KV feature matrixXX,

X′=X\+\(X​B\)​U⊤,X^\{\\prime\}=X\+\(XB\)U^\{\\top\},\(5\)whereBBis fixed and orthonormal andUUis trainable, shared across heads and positions within a layer/role\. Recurrent factors are shared across heads within a layer:

S′=S\+UL​BL⊤​S\+S​BR​UR⊤\.S^\{\\prime\}=S\+U\_\{L\}B\_\{L\}^\{\\top\}S\+SB\_\{R\}U\_\{R\}^\{\\top\}\.\(6\)Convolution usesCj,t′=Cj,t\+aj​Cj,t\+bjC^\{\\prime\}\_\{j,t\}=C\_\{j,t\}\+a\_\{j\}C\_\{j,t\}\+b\_\{j\}, shared over buffer positions\. All trainable residual outputs start at zero; fixed bases remain nonzero\. Components are optimized jointly through the receiver, without explicit cross\-component tensor mixing\.

The behavioral loss is full\-vocabulary KL from native 9B to the handoff, averaged over nine output positions \(bridge plus eight teacher inputs\)\. An identity penalty averages squared residual/base norm ratios\. Validation selects rank 4 and identity weight 0\.01\. The 434,176 trainable parameters are an*additional correction*: they exclude the fitted KV translator, fixed bases, and both language models\. They are not the size of the complete transfer system\.

## 3 Experimental Design

### 3\.1 Data and frozen selection

Both experiments use official Base checkpoints in BF16, with FP32 recurrent storage, on an RTX 5090\. Revisions, tokenizer hash, runtime versions, and selection rules appear in Appendices[A](https://arxiv.org/html/2609.25053#A1)–[C](https://arxiv.org/html/2609.25053#A3)\.

Experiment 1 calibrates translators on 128 FineWeb\-Edu documents and validates on 32 disjoint documents, using 1,024\-token prefixes and eight state checkpoints\. FineWeb\-Edu is an educational subset of FineWeb\[[11](https://arxiv.org/html/2609.25053#bib.bib12)\]\. Its held\-out test set contains 64 PG19 books\[[15](https://arxiv.org/html/2609.25053#bib.bib13)\], each with a 4,096\-token prefix and 64 teacher\-forced targets\. This tests longer prefixes and a different corpus from calibration\.

Experiment 2 uses 32 fresh FineWeb\-Edu documents at 4K for the component factorial and 64 further fresh documents for the primary test\. Both sets exclude all Experiment 1 split identities and text hashes\. Correction training and validation reuse the earlier 128/32 calibration documents at 1K; no held\-out outcomes enter fitting or selection\. Frozen salted hash ordering, eligibility rules, and duplicate handling determine document membership independently of model outputs\. The experiments’ test corpora differ, so comparing their aggregate losses does not isolate a method improvement\.

### 3\.2 Restoration and execution controls

Before cross\-model evaluation, complete same\-model restoration is checked on 16 contexts per model across four lengths\. Top\-1 agreement is the fraction of positions where restored and native runs assign highest probability to the same next token; it is agreement, not accuracy\. Both models achieve 100% agreement and zero maximum absolute logit difference\. This verifies capture and restoration, rather than state portability\. A pre\-fitting check also found chunked and one\-shot prefix processing unequal; consequently, each calibration checkpoint uses an independent one\-shot prefill\. All compared conditions share the frozen continuation schedule \(Appendix[A](https://arxiv.org/html/2609.25053#A1)\)\.

Wrong\-donor controls rotate complete states between equal\-length documents with no self\-donors\. They test whether successful continuation depends on the appropriate prefix state\. Neither experiment’s conditional 16K branch ran\. Experiment 2 additionally tracks state over 256 shared inputs; this is a secondary state diagnostic, not the primary 64\-target quality endpoint\.

### 3\.3 Metrics and uncertainty

Letℓd,c\\ell\_\{d,c\}be NLL over the 64 observed targets in documentddunder conditioncc, using natural logarithms\. Reported NLL is the equal\-weight document meanℓc=n−1​∑dℓd,c\\ell\_\{c\}=n^\{\-1\}\\sum\_\{d\}\\ell\_\{d,c\}, in nats/token\. Excess NLL is the handoff NLL minus native 9B NLL on the same continuation:

Δ​NLLc=ℓc−ℓnative9B\.\\Delta\\operatorname\{NLL\}\_\{c\}=\\ell\_\{c\}\-\\ell\_\{\\mathrm\{native9B\}\}\.\(7\)An excess NLL of 0 matches native continuation loss; positive values are worse, and negative values are lower loss\. Equal loss does not imply identical predictions\. We also compare directly with continued source 4B\.

Jensen–Shannon \(JS\) divergence measures how different the full output probability distribution is from native 9B: 0 means identical distributions and lower is better\. We average it over scored positions and documents\. Top\-1 agreement compares only the highest\-probability next token, using native 9B as the reference\.

Native context recovery \(NCR\) measures how much of the continuation benefit that native 9B obtains from processing the prefix is recovered by the handoff, relative to an empty 9B state:

NCRc=ℓempty9B−ℓcℓempty9B−ℓnative9B\.\\operatorname\{NCR\}\_\{c\}=\\frac\{\\ell\_\{\\mathrm\{empty9B\}\}\-\\ell\_\{c\}\}\{\\ell\_\{\\mathrm\{empty9B\}\}\-\\ell\_\{\\mathrm\{native9B\}\}\}\.\(8\)Thus, NCR=0\.918=0\.918means recovering 91\.8% of native 9B’s improvement in continuation NLL from having the prefix, relative to empty 9B\. It does*not*mean 91\.8% accuracy\. NCR is a ratio of aggregate NLLs and can lie outside\[0,1\]\[0,1\]\. Appendix[D](https://arxiv.org/html/2609.25053#A4)defines target\-quality recovery \(TQR\), remaining\-gap reduction, and distribution/state diagnostics\.

The statistical unit is the document\. Intervals use 10,000 paired document bootstrap resamples and central 95% percentiles with frozen seeds\. They preserve within\-document condition pairing; tokens are not independent replicates\. Verification reproduces the frozen calculations and retains canonical intervals\. Post\-verdict diagnostics are explicitly separated from primary results\.

Table 2:Metrics at a glance\.Reference values describe loss or agreement with native 9B, not task accuracy\.

## 4 Results

### 4\.1 Does GDN memory contribute beyond KV?

Holding translated KV fixed, adding the translated GDN persistent\-state package lowers NLL by 0\.7473 nats/token \(95% CI \[0\.6921, 0\.8047\]\)\.*All 64 documents improve*\(Figure[3](https://arxiv.org/html/2609.25053#S4.F3)\)\. The direction is therefore consistent across the entire test set, rather than confined to a small subset of documents\. Each scatter point is one paired document, the same unit used for uncertainty\.

Figure 3:64 of 64 documents improve\.Each point pairs one PG19 document’s excess NLL under KV\-only and full translated state; every point lies below equality\. Adding the GDN package improves NLL by 0\.7473 nats/token \(95% paired document bootstrap CI \[0\.6921, 0\.8047\]\)\. The diamond marks paired means\. Prefixes contain 4,096 tokens and each document contributes 64 teacher\-forced targets\. This is a document\-level effect, not 4,096 independent token replicates\.Table 3:Experiment 1 test fidelity on 64 PG19 documents\. NLLs are document means in nats/token; top\-1 is agreement with native 9B\. Source agreement was not recorded in this table\. Full precision is retained in Appendix[E](https://arxiv.org/html/2609.25053#A5)\.KV\-only NLL is 3\.115, close to empty 9B’s 3\.246 and far above native 9B’s 2\.161 \(Table[3](https://arxiv.org/html/2609.25053#S4.T3)\)\. Adding GDN state lowers it to 2\.368 and removes about 80% of KV\-only excess NLL: the mean per\-document reduction is 79\.7% and the median 80\.2%\. This package includes recurrent matrices, convolution history, and initialization semantics\. The primary contrast does not separate their individual contributions\.

The fully translated condition nevertheless remains worse than continued 4B \(2\.307 NLL\)\. It clears the preregistered recurrent\-state contribution criterion but misses the stronger full\-state criterion, with excess NLL 0\.207\. The exact experiment\-specific verdicts and gates are retained in Appendix[D](https://arxiv.org/html/2609.25053#A4)\.

### 4\.2 Which components need translation?

Direct GDN reuse is stronger than the tested learned GDN maps\. In Experiment 1, replacing recurrent and convolution translation with direct copying reduces NLL from 2\.368 to 2\.291, a 0\.077\-nat improvement with translated KV unchanged\. Experiment 2 tests this component preference afresh \(Figure[4](https://arxiv.org/html/2609.25053#S4.F4)\)\. The learned recurrent mapper nevertheless has lower validation reconstruction error; the behavioral comparison also changes convolution translation and evaluation domain \(Section[6](https://arxiv.org/html/2609.25053#S6.SS0.SSS0.Px2)\)\.

Figure 4:Translate KV; directly reuse recurrent memory\.Experiment 2’s factorial uses 32 fresh FineWeb\-Edu validation documents, 4K prefixes, and 64 teacher\-forced targets\. \(A\) D/T denotes direct/translated\(K,R,C\)\(K,R,C\)state; filled points translate KV\. TDT has the lowest numerical loss, but the frozen 0\.01\-nat tie rule selects TDD \(diamond\), which uses fewer translations\. \(B\) Main effects average paired differences over the other factors; bars are 95% document bootstrap intervals\. Recurrent translation worsens NLL, whereas convolution translation has an uncertain small effect\.In the 32\-document factorial, translating KV lowers NLL by 0\.070 nats/token on average \(translated minus direct:−0\.0705\-0\.0705, CI \[−0\.1009\-0\.1009,−0\.0409\-0\.0409\]\)\. Translating recurrent state instead raises NLL by 0\.0280 \(CI \[0\.0104, 0\.0475\]\)\. Convolution translation’s estimate is−0\.0004\-0\.0004\(CI \[−0\.0026\-0\.0026, 0\.0018\]\); this interval does not establish equivalence\.

TDT has the lowest validation excess NLL, 0\.132226, versus 0\.133377 for TDD\. The difference falls within the frozen tie tolerance, selecting TDD because it translates fewer components\. On the separate 64\-document test set, TDD reaches excess NLL 0\.105, compared with 0\.134 for TTT \(paired TTT\-minus\-base CI \[0\.0170, 0\.0418\]\)\. Direct GDN preference thus persists on held\-out continuations\.

No pairwise interaction satisfies the preregistered criterion for replication in both direction and magnitude \(Appendix[F](https://arxiv.org/html/2609.25053#A6)\)\. The validation KV–recurrent interaction is 0\.0284 nats/token; its test estimate, 0\.0151, is below the 0\.02 materiality threshold\. Joint optimization of a correction therefore need not imply that material cross\-component coupling explains the original mismatch\.

### 4\.3 Can the corrected handoff beat continued 4B?

Yes, on the held\-out teacher\-forced continuations\. Corrected 9B NLL is 1\.989 versus 2\.042 for continued 4B\. Corrected minus source is−0\.0521\-0\.0521nats/token \(95% CI \[−0\.0843\-0\.0843,−0\.0185\-0\.0185\]\)\. This supplies an intuitive behavioral endpoint: after receiving the imported state, the larger model predicts the observed continuation better than the source that read the prefix\.

Table 4:Experiment 2 test fidelity on 64 fresh FineWeb\-Edu documents at 4K, with 64 teacher\-forced targets each\. Corrected 9B improves on both its selected base and continued 4B; wrong\-donor state removes the advantage\. NLL and excess NLL are nats/token, JS compares distributions with native 9B, and top\-1 measures prediction agreement\. NCR is context\-benefit recovery \(Eq\.[8](https://arxiv.org/html/2609.25053#S3.E8)\)\. Six\-decimal values and TQR appear in Appendix[E](https://arxiv.org/html/2609.25053#A5)\.The correction lowers base NLL from 2\.018 to 1\.989 and excess NLL from 0\.105 to 0\.076 \(Table[4](https://arxiv.org/html/2609.25053#S4.T4)\)\. The paired improvement is 0\.0290 nats/token \(CI \[0\.0228, 0\.0354\]\), removing 27\.5% of the remaining native gap \(ratio CI \[22\.4%, 33\.9%\]\)\. The corrected continuation loss is only 0\.076 nats/token above native 9B\. Its full output distribution is also close to native 9B \(JS 0\.022, where 0 is identical\), improving from base JS 0\.029\. NCR 0\.918 corresponds to recovering 91\.8% of native 9B’s prefix\-derived continuation benefit relative to empty 9B\. Top\-1 agreement rises from 0\.846 to 0\.864\.

These gains require only a small adjustment to the base: the median layer\-relative residual norm is 0\.0264, and the maximum is 0\.0440\. The 434,176\-parameter correction occupies 1\.90 MB serialized, in addition to the existing KV translator \(Appendix[C](https://arxiv.org/html/2609.25053#A3)\)\. These norms are relative to the base state, not bounds on prediction error\.

The result passes the protocol’s full\-state gate, but*fails its near\-native gate*: excess NLL 0\.076 exceeds 0\.05, NCR 0\.918 is below 0\.95, and top\-1 agreement 0\.864 is below 0\.90\. All three stronger thresholds are missed; the conditional 16K branch was therefore not run\. Appendix[D](https://arxiv.org/html/2609.25053#A4)records the exactFULL\_STATE\_HANDOFFandNEAR\_NATIVE\_HANDOFFdefinitions\. The measured gain is teacher\-forced fidelity, not free\-generation or downstream\-task equivalence\.

### 4\.4 Does the correct source context matter?

Rotating complete donor states removes the continuation advantage\. In Experiment 1, correct full state improves on shuffled state by 0\.948 nats/token \(CI \[0\.878, 1\.022\]\)\. In Experiment 2, corrected minus shuffled NLL is−1\.188\-1\.188\(CI \[−1\.296\-1\.296,−1\.085\-1\.085\]\); shuffled NLL is 3\.178, worse than empty 9B’s 2\.842\.

The receiver therefore uses document\-specific information in the transferred hybrid state\. Together with the fixed\-KV primary contrast, these controls support useful transfer beyond attention KV\. Because the shuffle changes the complete donor state, it does not independently localize that context specificity to recurrent matrices or identify particular retained facts\. Secondary state\-convergence measurements and explicitly post\-verdict correction removals are reported in Appendix[G](https://arxiv.org/html/2609.25053#A7)\.

## 5 Related Work: Interfaces for Reuse

### 5\.1 Cross\-model KV/cache translation

Cache\-to\-Cache projects and fuses source KV with the receiver’s own context cache\[[1](https://arxiv.org/html/2609.25053#bib.bib2)\]\. Latent Cache Flow adds joint K/V bottlenecks and pooled communication across differing contexts, retaining receiver\-cache fusion\[[16](https://arxiv.org/html/2609.25053#bib.bib15)\]\. Semantic Cache Distillation reconstructs KV from compact codes and sparse normalized hidden\-input patches for shared\-architecture, weight\-mismatched models\[[9](https://arxiv.org/html/2609.25053#bib.bib3)\]\. It transfers more than raw KV but does not evaluate persistent GDN state\. Mixture\-of\-Translators maps heterogeneous KV and uses target context replay to reconstruct cache, with source\-guided sparsification\[[3](https://arxiv.org/html/2609.25053#bib.bib4)\]\.

XKV pools both models’ KV caches into joint cross\-layer memory and lets each receiver position retrieve a gated KV residual\[[6](https://arxiv.org/html/2609.25053#bib.bib21)\]\. It supports heterogeneous models holding complementary private contexts\. Both models prefill their own contexts; the communication updates attention KV, rather than transferring built\-in persistent recurrent state\.

Other work installs translated KV without full receiver prefix processing\.[Heo et al\. \[2\]](https://arxiv.org/html/2609.25053#bib.bib5)study within\-family transfer in dense full\-attention models using ridge maps, layer selection, and RoPE factoring; attention–recurrent hybrids are outside their evaluation\. CacheBridge uses head\-local support and attention\-weighted calibration\[[14](https://arxiv.org/html/2609.25053#bib.bib7)\]\. A Universal Context\-Reuse Layer reports KV sharing within and across families\[[5](https://arxiv.org/html/2609.25053#bib.bib6)\]\. KV transfer itself is established prior work\. Our additional question concerns persistent recurrent and convolution state in a live hybrid receiver\.

### 5\.2 Hidden\-state and latent communication

StateBridge aligns message hidden states to an embedding interface and supplies a continuous prefix processed by the receiver\[[12](https://arxiv.org/html/2609.25053#bib.bib8)\]; its reported multi\-agent runs share weights within each run\. A continuous message can communicate useful information without installing state in the receiver’s built\-in persistent inference slots\. We distinguish these interfaces without comparing unlike tasks or replay budgets\.

### 5\.3 External memory and reader adaptation

[Li et al\. \[4\]](https://arxiv.org/html/2609.25053#bib.bib16)transfer learned Engram\-style external memory through a tokenizer\-agnostic addressing interface\. They study both direct reuse of compatible memory/reader artifacts and target\-side reader adaptation with frozen memory and backbones\. Their result makes reader compatibility directly relevant to our question\. The transferred object, however, is a learned external memory with injected reader outputs, rather than a hybrid model’s built\-in inference cache captured after a particular input prefix\. Our handoff installs that input\-conditioned persistent state without adapting target backbone weights\.

### 5\.4 Cross\-model activation\-state transfer

[Piepereit \[13\]](https://arxiv.org/html/2609.25053#bib.bib17)project intermediate activations across model architectures and test their effect through activation injection\. Alignment scores do not consistently predict successful behavioral transfer, and the observed effects depend on the model pair\. Their generation intervention replaces a prompt\-position hidden state while reprocessing token sequences; it does not install persistent hybrid cache state\. This is adjacent evidence about functional compatibility of internal representations, rather than evidence that all internal state is portable\.

### 5\.5 Same\-model recurrent/hybrid reuse

Marconi manages hybrid prefix checkpoints for serving\[[10](https://arxiv.org/html/2609.25053#bib.bib11)\]\. HYPIC composes recurrent state from segment operators and end\-states, with seam recomputation for hybrid attention\[[7](https://arxiv.org/html/2609.25053#bib.bib9)\]\. DASC selects and compresses persistent state, using zero filling or bounded refresh on restoration\[[20](https://arxiv.org/html/2609.25053#bib.bib10)\]\. Tail\-Replay reconstructs recurrent state from a recent suffix of a matched prefix instead of retaining recurrent checkpoints\[[8](https://arxiv.org/html/2609.25053#bib.bib14)\]\. These systems reuse, compose, or recover memory for the same model\. Here, a different model consumes the state and performs no historical prefix replay\.

WriteSAE decomposes recurrent cache state into matrix atoms and tests replacement or amplification of writes in Gated DeltaNet and related architectures\[[19](https://arxiv.org/html/2609.25053#bib.bib20)\]\. These behavioral interventions establish recurrent cache writes as a causal intervention surface\. Its larger\-host probe also reuses a learned dictionary without retraining\. That transferred dictionary edits the host’s state; it is not a prefix\-conditioned recurrent state written by another model and installed for receiver continuation\.

Recurrent\-state initialization is also an adaptation surface: S0 tuning learns initial matrices before processing a prompt, rather than transferring another model’s prefix\-conditioned state\[[18](https://arxiv.org/html/2609.25053#bib.bib18)\]\. Metis adds learned memory blocks and evaluates memory\-only inference on multiple backbones\[[21](https://arxiv.org/html/2609.25053#bib.bib19)\]\. Its backbone\-transfer study trains the memory mechanism for each backbone; it does not demonstrate a live state written by one model being consumed by another\.

### 5\.6 Positioning

We are not aware of prior work demonstrating cross\-model transfer of built\-in persistent recurrent inference state between differently sized attention–recurrent hybrid LLMs without target prefix replay\. Here,*built\-in persistent*identifies the model’s built\-in recurrent inference interface; imported state is target\-compatible state, not the state native 9B would produce by reading the prefix\. The distinction is the combination of different models and sizes, hybrid recurrence, prefix\-conditioned persistent state, live receiver installation, and zero historical receiver replay\. Our literature check supports this qualified claim, not a claim that cross\-model internal\-state transfer generally is new\.

## 6 Discussion

#### Partial functional state compatibility\.

Equal shapes explain why copying is possible, not why it works\. The two models have different hidden widths and learned read, write, and gating operations\. Direct GDN reuse nevertheless supports strong continuation when paired with translated KV, and a wrong donor sharply degrades performance\. This is consistent with partially compatible functional coordinates for persistent state in this sibling pair\. Shared pretraining or a shared training recipe could help produce such compatibility; that is a hypothesis, not a factor isolated here\. Neither representation identity nor a formal state ABI follows from the result\.

#### Lower state reconstruction error does not guarantee better cross\-model continuation\.

The learned recurrent mapper reduces normalized recurrent\-state reconstruction error on validation data from 0\.6732 for direct copying to 0\.5037, yet full learned GDN translation performs worse behaviorally than direct GDN reuse\. In this experiment, lower recurrent tensor reconstruction error is therefore insufficient to predict a better handoff\. The behavioral contrast also changes convolution translation, and calibration and held\-out continuation use different domains\. These confounds prevent an isolated causal conclusion about recurrent\-state Euclidean error\. The empirical lesson is consistent with CacheBridge: attention\-sensitive weighting improves continuation despite little change in unweighted KV reconstruction\[[14](https://arxiv.org/html/2609.25053#bib.bib7)\]\. A behavioral objective directly targets receiver compatibility\. Post\-verdict removals identify recurrent correction as influential in the fitted solution, but do not isolate the recurrent matrix’s share of the original package benefit \(Appendix[G\.1](https://arxiv.org/html/2609.25053#A7.SS1)\)\.

#### Bounded portability beyond KV\.

The result is an existence demonstration under favorable correspondence: persistent recurrent and convolution memory can remain useful after a change of model\. It does not supply a universal translation rule\. Geometry mismatch, altered head/layer organization, or different learned update dynamics could break the observed compatibility\. Prototype timings in Appendix[H](https://arxiv.org/html/2609.25053#A8)do not establish serving speedup\.

#### A possible state\-interface design direction\.

Direct reuse motivates a speculative design direction: model families could be trained deliberately to preserve compatible persistent\-state geometry and functional coordinates across sizes, exposing a stable interface for model switching\. Such an interface could function as a state ABI between model sizes\. This experiment establishes neither that such an ABI exists generally nor that it can be engineered; it only motivates testing the idea\.

#### Decisive next tests\.

The two most decisive next tests are unconstrained free generation after handoff and replication on an independent model pair\. Free generation tests whether small state errors compound when ground\-truth continuation tokens no longer stabilize the receiver\. An independent pair tests whether compatibility is peculiar to these Qwen siblings or reproducible in families with matched persistent\-state geometry\. Mismatched geometry is a subsequent, harder test\. These are follow\-up research directions, not completed evidence\.

## 7 Limitations

The study covers one directed 4B→\\to9B transfer between Qwen3\.5 Base siblings with exactly matched persistent\-state geometry\. Translators and correction are specific to this pair\. Instruct models, cross\-family transfer, and mismatched geometry are untested; shared pretraining and training recipe may contribute to the result\.

Behavioral evaluation uses 4K prefixes and 64 teacher\-forced targets\. Ground\-truth inputs can stabilize continuation, so neither free\-generation equivalence nor downstream task success follows\. The 16K branch did not run; the 256\-input state diagnostic is not a longer\-context quality evaluation\. The original primary contrast does not isolate recurrent matrices from convolution history and initialization semantics\.

Runtime scheduling matters, as the chunk\-equivalence check demonstrates\. Bootstrap uncertainty is conditional on the frozen models, fitted maps, selected correction, and corpus procedure; it does not cover training\-seed or model\-pair variation\. Post\-verdict ablations reuse test documents and are exploratory\. Timing omits important costs and is not an end\-to\-end production benchmark\.

## 8 Conclusion

KV is not the whole transferable inference state of a hybrid LLM\. In one matched Qwen3\.5 4B→\\to9B pair, persistent GDN state carries source\-specific information that the larger receiver can use without reading the historical prefix\. To our knowledge, this is the first demonstrated cross\-model handoff of persistent recurrent inference state between differently sized hybrid language models without target prefix replay\. Direct recurrent and convolution reuse is unexpectedly strong despite the learned recurrent mapper’s lower reconstruction error, suggesting partial functional compatibility of persistent\-state coordinates; a compact additional correction further closes the continuation gap\. This bounded result motivates deliberately training families for persistent\-state compatibility across sizes, an idea that requires free\-generation testing and replication beyond this sibling pair\.

## References

- \[1\]\(2026\)Cache\-to\-Cache: Direct Semantic Communication Between Large Language Models\.InInternational Conference on Learning Representations,External Links:2510\.03215,[Link](https://arxiv.org/abs/2510.03215)Cited by:[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p1.1)\.
- \[2\]T\. Heo, R\. Shafipour, R\. Zhao, M\. Golub, M\. M\. Kamani, R\. Borkar, M\. T\. Chandran, P\. Zardoshti, and B\. D\. Rouhani\(2026\)Cross\-Model KV Cache Transfer in LLM Families: A Closed\-Form Linear Mapping for Prefill Reuse\.Note:arXiv preprint arXiv:2608\.03893External Links:2608\.03893,[Link](https://arxiv.org/abs/2608.03893)Cited by:[§1](https://arxiv.org/html/2609.25053#S1.p1.1),[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p3.1)\.
- \[3\]J\. Lee, M\. Song, J\. Oh, S\. Han, S\. Park, G\. Jang, and S\. Lim\(2026\)Mixture\-of\-Translators: Translating KV Caches Across Heterogeneous Large Language Models\.Note:arXiv preprint arXiv:2607\.28979External Links:2607\.28979,[Link](https://arxiv.org/abs/2607.28979)Cited by:[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p1.1)\.
- \[4\]M\. Li, G\. Yu, X\. Wang, and S\. Ji\(2026\)Cross\-Model Memory Transfer via Target\-Side Reader Adaptation\.Note:arXiv preprint arXiv:2608\.17050External Links:2608\.17050,[Link](https://arxiv.org/abs/2608.17050)Cited by:[§5\.3](https://arxiv.org/html/2609.25053#S5.SS3.p1.1)\.
- \[5\]Y\. Li, D\. Jiang, Y\. Zhao, and B\. Li\(2026\)A Universal Context\-Reuse Layer for Cross\-Model KV Sharing\.Note:arXiv preprint arXiv:2608\.30963External Links:2608\.30963,[Link](https://arxiv.org/abs/2608.30963)Cited by:[§1](https://arxiv.org/html/2609.25053#S1.p1.1),[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p3.1)\.
- \[6\]J\. Liu, Q\. Zhang, Y\. Jia, Z\. Kan, and S\. Wang\(2026\)Dual\-Cache Latent Space Communication between Heterogeneous Language Models\.Note:arXiv preprint arXiv:2608\.20617External Links:2608\.20617,[Link](https://arxiv.org/abs/2608.20617)Cited by:[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p2.1)\.
- \[7\]Y\. Liu, J\. Wu, Y\. Liu, J\. Hu, M\. Li, X\. Chen, and W\. Chen\(2026\)HYPIC: Accelerating Hybrid\-Attention LLM Serving with Position\-Independent Caching\.Note:arXiv preprint arXiv:2607\.01299External Links:2607\.01299,[Link](https://arxiv.org/abs/2607.01299)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p1.1)\.
- \[8\]Y\. Liu, R\. Qi, X\. Wu, P\. Liu, and J\. Chen\(2026\)Tail\-Replay: Escaping the Curse of Linear Attention in Prefix Caching for Hybrid LLMs\.Note:arXiv preprint arXiv:2608\.30310External Links:2608\.30310,[Link](https://arxiv.org/abs/2608.30310)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p1.1)\.
- \[9\]Q\. Ma, Z\. Tang, H\. Cui, Z\. Yao, and W\. Jia\(2026\)Semantic Cache Distillation: Efficient State Transfer via Reuse and Selective Patching\.InInternational Conference on Machine Learning,External Links:2606\.07684,[Link](https://arxiv.org/abs/2606.07684)Cited by:[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p1.1)\.
- \[10\]R\. Pan, Z\. Wang, Z\. Jia, C\. Karakus, L\. Zancato, T\. Dao, Y\. Wang, and R\. Netravali\(2025\)Marconi: Prefix Caching for the Era of Hybrid LLMs\.InProceedings of Machine Learning and Systems,External Links:2411\.19379,[Link](https://arxiv.org/abs/2411.19379)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p1.1)\.
- \[11\]G\. Penedo, H\. Kydlíček, L\. B\. allal, A\. Lozhkov, M\. Mitchell, C\. Raffel, L\. Von Werra, and T\. Wolf\(2024\)The FineWeb Datasets: Decanting the Web for the Finest Text Data at Scale\.Note:arXiv preprint arXiv:2406\.17557External Links:2406\.17557,[Link](https://arxiv.org/abs/2406.17557)Cited by:[§3\.1](https://arxiv.org/html/2609.25053#S3.SS1.p2.1)\.
- \[12\]Y\. Peng, D\. C\. Zhang, X\. Wang, and N\. Aletras\(2026\)StateBridge: Training\-free Hidden\-state Alignment for Latent Communication in LLM Multi\-Agent Systems\.InConference on Language Modeling,External Links:2608\.13317,[Link](https://arxiv.org/abs/2608.13317)Cited by:[§5\.2](https://arxiv.org/html/2609.25053#S5.SS2.p1.1)\.
- \[13\]F\. C\. Piepereit\(2026\)Architecture\-Dependent Causal Transfer of Activation States Across Large Language Models\.Note:arXiv preprint arXiv:2608\.16347External Links:2608\.16347,[Link](https://arxiv.org/abs/2608.16347)Cited by:[§5\.4](https://arxiv.org/html/2609.25053#S5.SS4.p1.1)\.
- \[14\]X\. Qu, S\. Lu, Z\. Chen, S\. Wang, and T\. Lin\(2026\)CacheBridge: Efficient Cross\-Model KV Cache Transfer\.Note:arXiv preprint arXiv:2609\.00891External Links:2609\.00891,[Link](https://arxiv.org/abs/2609.00891)Cited by:[§1](https://arxiv.org/html/2609.25053#S1.p1.1),[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p3.1),[§6](https://arxiv.org/html/2609.25053#S6.SS0.SSS0.Px2.p1.1)\.
- \[15\]J\. W\. Rae, A\. Potapenko, S\. M\. Jayakumar, and T\. P\. Lillicrap\(2020\)Compressive Transformers for Long\-Range Sequence Modelling\.InInternational Conference on Learning Representations,External Links:1911\.05507,[Link](https://arxiv.org/abs/1911.05507)Cited by:[§3\.1](https://arxiv.org/html/2609.25053#S3.SS1.p2.1)\.
- \[16\]M\. Rossi, P\. Raghunath, and E\. Wu\(2026\)Latent Cache Flow: Model\-to\-Model Communication Without Text\.Note:arXiv preprint arXiv:2605\.22863External Links:2605\.22863,[Link](https://arxiv.org/abs/2605.22863)Cited by:[§5\.1](https://arxiv.org/html/2609.25053#S5.SS1.p1.1)\.
- \[17\]S\. Yang, J\. Kautz, and A\. Hatamizadeh\(2025\)Gated Delta Networks: Improving Mamba2 with Delta Rule\.InInternational Conference on Learning Representations,External Links:2412\.06464,[Link](https://arxiv.org/abs/2412.06464)Cited by:[§1](https://arxiv.org/html/2609.25053#S1.p2.1),[§2\.1](https://arxiv.org/html/2609.25053#S2.SS1.p1.1)\.
- \[18\]J\. Young\(2026\)S0 Tuning: Zero\-Overhead Adaptation of Hybrid Recurrent\-Attention Models\.Note:arXiv preprint arXiv:2604\.01168External Links:2604\.01168,[Link](https://arxiv.org/abs/2604.01168)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p3.1)\.
- \[19\]J\. Young\(2026\)WriteSAE: Sparse Autoencoders for Recurrent State\.Note:arXiv preprint arXiv:2605\.12770External Links:2605\.12770,[Link](https://arxiv.org/abs/2605.12770)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p2.1)\.
- \[20\]Y\. Yu, P\. Sun, J\. Tan, T\. Zhang, Y\. Xie, X\. Cai, and Y\. Liu\(2026\)DASC: Decay\-Aware State Compression for Hybrid Linear\-Attention Serving\.Note:arXiv preprint arXiv:2608\.30386External Links:2608\.30386,[Link](https://arxiv.org/abs/2608.30386)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p1.1)\.
- \[21\]Z\. Zhang, Z\. Guo, Y\. Sun, X\. Zhang, X\. Hao, Z\. Lin, Y\. Zhang, X\. Zhao, T\. Shen, B\. Tang, Z\. J\. Xu, J\. Yan, H\. Wang, X\. Chen, F\. Xiong, Z\. Li, and T\. Chua\(2026\)Metis: Memory Foundation Model\.Note:arXiv preprint arXiv:2607\.26760External Links:2607\.26760,[Link](https://arxiv.org/abs/2607.26760)Cited by:[§5\.5](https://arxiv.org/html/2609.25053#S5.SS5.p3.1)\.

## Appendix AFrozen Models and Runtime

The source repository isQwen/Qwen3\.5\-4B\-Base, revision

> 1001bb4d826a52d1f399e183466143f4da7b741b\.

The target isQwen/Qwen3\.5\-9B\-Base, revision

> 68c46c4b3498877f3ef123c856ecfde50c39f404\.

The tokenizer uses the source repository and revision\. The frozentokenizer\.jsonSHA\-256 is

> fe000e3ed39ed12b8d2481d527d44f93c65d37e87645d2dcc80d1bf9d50d2927\.

These are official Base checkpoints\. No instruct substitution, weight updates, LoRA, quantization, MTP, or speculative decoding is part of either experiment\. Loaded language\-model parameter counts are 4,205,751,296 and 8,953,803,264\.

The recorded runtime uses Python 3\.11\.9, PyTorch 2\.13\.0\+cu130, CUDA runtime 13\.0, Transformers 5\.16\.1, Datasets 5\.0\.1, and Hugging Face Hub 1\.29\.0\. Hardware is an NVIDIA GeForce RTX 5090, compute capability 12\.0, with 32,607 MiB reported VRAM; driver 591\.86 reports CUDA 13\.1 support\. These version numbers are taken from the frozen runtime artifact\. They describe the experimental environment, not the lighter Python/LaTeX environment used to render this paper\.

The architecture gate checks all 32 layer types, attention KV geometry, the GDN recurrent and convolution geometry, and RoPE geometry\. Attention has eight layers at zero\-based indices3,7,…,313,7,\\ldots,31\. Each K or V tensor is1×4×L×2561\\times 4\\times L\\times 256\. Each of the other 24 layers retains one recurrent tensor of shape1×32×128×1281\\times 32\\times 128\\times 128and a convolution tensor of shape1×8192×41\\times 8192\\times 4\. Recurrent memory is FP32; attention and convolution memory use BF16\. At 4K, the complete tensor payload is 186,122,240 bytes for either model\. Metadata includes initialization flags, previous\-state flags, convolution kernel sizes, logical length, and positions; it is constructed deterministically rather than learned\.

Complete same\-model restoration uses 16 deterministic contexts per model at lengths 256, 512, 1,024, and 2,048\. Both achieve top\-1 agreement 1\.0 and maximum absolute logit difference 0; the minimum next\-logit cosine is 0\.99999988\. A separate pre\-fitting one\-shot versus eight\-chunk 1,024\-token check has maximum bridge\-logit difference 0\.125\. Each FIT/VALIDATION checkpoint was therefore captured by an independent fresh\-cache one\-shot prefill at 128\-token intervals\. Canonical continuation shares the 1/4/16/64 checkpoint schedule across conditions; E002 extends state tracking to 256 inputs\. These are frozen implementation decisions\.

The installer rejects activation of only one GDN component: recurrent and convolution restoration share a previous\-state branch\. Consequently, an independently fresh\-R/direct\-C or direct\-R/fresh\-C intervention is not implemented by the frozen path\. Bypassing the guard and supplying initialized zeros would change the meaning of “fresh\.” No new presence ablation was run for this revision; isolating R from C requires a separately validated intervention\. The local revision feasibility audit records the exact code paths\. This does not alter either original experiment\.

## Appendix BSplits and Deterministic Selection

E001 uses FineWeb\-Edu revision

> 87f09149ef4734204d70ed1d046ddc9ca3f2b8f9

and immutable shardsample/100BT/000\_00000\.parquet\. Its FIT/VALIDATION candidate universe is physical rows 0–19,999\. Eligible rows are sorted by a SHA\-256 key containing the frozen saltlatentport\-e001\-splits\-v1, corpus revision, shard, physical row, and document ID\. Duplicate document IDs or UTF\-8 text hashes retain the lowest\-ranked row\. The first 128 eligible documents form FIT and the next 32 VALIDATION, each requiring at least 1,089 token IDs\.

PG19 usesemozilla/pg19, revision

> c021754c8e01c5b1cc83a1f549c1f97fbbb756b8,

and its frozen test parquet\. Hash ordering first reserves 16 documents meeting the 16,449\-token LONG requirement; LOCKED takes the first 64 remaining eligible documents meeting the 4,161\-token requirement\. Reserve membership is part of the frozen selection protocol, not evidence of LONG evaluation\.

E002 uses the same FineWeb\-Edu revision and shard but expands the candidate universe to rows 0–99,999 and uses the saltlatentport\-e002\-splits\-v1\. Its coarse filter uses source\-reported token count before exact eligibility under the frozen Qwen tokenizer\. All E001 split IDs and text hashes are excluded from fresh selection\. The factorial reserves 32 fresh 4K documents; LOCKED contains 64 further fresh 4K documents\. The LOCKED records store 4,352 tokens to support bridge\-plus\-255\-input state tracking\. Correction fitting/validation explicitly reference the 128/32 E001 non\-LOCKED documents\. Split IDs, source hashes, and input tokens remain frozen\. The paper verification reads no unused LONG token payloads\.

## Appendix CTranslator and Correction Details

The E001 ridge grid is\{10−8,10−6,10−4,10−2,1,102\}\\\{10^\{\-8\},10^\{\-6\},10^\{\-4\},10^\{\-2\},1,10^\{2\}\\\}relative totr⁡\(Xc⊤​Xc\)/d\\operatorname\{tr\}\(X\_\{c\}^\{\\top\}X\_\{c\}\)/d\. KV and convolution fits consider centering alone or per\-feature standardization; recurrent fits use centering and exactly three alternating updates of Eq\.[4](https://arxiv.org/html/2609.25053#S2.E4)\. The KV position sampler selects 64 positions per FIT document, including endpoints and 128\-token boundaries\. Recurrent fitting uses eight independent one\-shot checkpoint captures per document\. Hyperparameter selection minimizes registered validation tensor error; no layer/head alignment or position parameters are learned\.

The frozen E001 operator weights comprise 4,194,304 KV coefficients, 25,165,824 recurrent coefficients, and 25,165,824 convolution coefficients: 54,525,952 in total, excluding stored centering/normalization values\. The full bundle occupies 322,222,408 bytes\. E002’s selected TDD path uses the KV operator and direct GDN state\. Its KV tensor artifact alone is 17,042,160 bytes, in addition to the 1,901,432\-byte correction\. Thus correction size should not be confused with total deployed mapping storage\.

E002 uses rankr∈\{2,4\}r\\in\\\{2,4\\\}and identity penaltyλid∈\{0,10−4,10−3,10−2\}\\lambda\_\{\\rm id\}\\in\\\{0,10^\{\-4\},10^\{\-3\},10^\{\-2\}\\\}\. Table[5](https://arxiv.org/html/2609.25053#A3.T5)reports every selected\-per\-candidate checkpoint\. The fixed Gaussian\-QR basis seed is 2026090102; the global/training seeds are 2026090101 and 2026090106\. AdamW uses learning rate10−310^\{\-3\},\(β1,β2\)=\(0\.9,0\.95\)\(\\beta\_\{1\},\\beta\_\{2\}\)=\(0\.9,0\.95\),ϵ=10−8\\epsilon=10^\{\-8\}, no weight decay, one document per batch, gradient accumulation over eight documents, and gradient\-norm clipping at 1\. Training follows manifest order for at most three epochs, with early\-stop patience one and minimum improvement10−610^\{\-6\}\. Candidate selection minimizes validation behavioral KL; ties within10−610^\{\-6\}prefer lower rank, larger identity penalty, then earlier epoch\. The selected checkpoint has rank 4,λid=0\.01\\lambda\_\{\\rm id\}=0\.01, and epoch 3\.

Table 5:Frozen E002 correction selection grid\. Validation KL is mean full\-vocabulary native\-to\-handoff KL over nine output positions on 32 non\-LOCKED 1K documents\. These are selection scores, not LOCKED results\.The rank\-4 trainable count is

PK\\displaystyle P\_\{K\}=8⋅2⋅256⋅4=16,384,\\displaystyle=8\\cdot 2\\cdot 256\\cdot 4=16\{,\}384,PR\\displaystyle P\_\{R\}=24⋅2⋅128⋅4=24,576,\\displaystyle=24\\cdot 2\\cdot 128\\cdot 4=24\{,\}576,PC\\displaystyle P\_\{C\}=24⋅2⋅8192=393,216\.\\displaystyle=24\\cdot 2\\cdot 8192=393\{,\}216\.The fixed bases are buffers, not trainable parameters\. All trainable outputs, scales, and biases start at zero\. The layer\-relative magnitude statistics pool 64 documents’ records; they are not just norms of the trained weights\. KV norms combine the K and V residuals within each attention layer, while recurrent and convolution records are separate\. The pooled median therefore reflects this explicit record weighting\.

Attention translation fits each layer, KV head, and K/V role separately\. Its positional step operates on the 64 rotary dimensions of each 256\-dimensional key\. The implementation explicitly inverts the BF16\-rounded sine/cosine transform, dividing by the corresponding squared\-sine\-plus\-squared\-cosine factor; nonrotary coordinates are unchanged by that step\. Recurrent bilinear maps use three deterministic alternating ridge updates per regularization candidate\. Convolution maps operate within the runtime’s packed Q/K/V component and head groups\. Selection uses validation tensor error before either held\-out evaluation\.

The selected correction contains 434,176 trainable parameters under an exclusive two\-million\-parameter cap\. Its serialized artifact is 1,901,432 bytes,1\.0618013×10−41\.0618013\\times 10^\{\-4\}of target BF16 parameter bytes\. The pooled median residual/base norm is 0\.026432 and the maximum 0\.043951\. Table[6](https://arxiv.org/html/2609.25053#A3.T6)gives the component inventory\. These magnitudes concern the installed state perturbation, not native\-state reconstruction error or prediction error\.

Table 6:Frozen E002 correction inventory\. Median norm is the residual/base Frobenius norm over LOCKED document–layer records, pooled separately by component or over all records\. Rank 4 applies to KV and recurrent residuals; convolution uses channel scale/bias\. Counts exclude fixed bases and the existing KV translator\.
## Appendix DCondition and Metric Semantics

Native 9B processes the historical prefix normally; source 4B continues from its own prefix state\. Empty 9B begins without historical state at the same logical continuation position\. E001 KV\-only installs translated attention KV and leaves both GDN components fresh\. KV plus direct GDN installs translated KV with copied recurrent and convolution tensors\. Full translated installs all three frozen mapped components\. Full shuffled uses a different document’s complete translated state\. E002 D/T cells install the stated source or translated components, base is frozen TDD, corrected applies Eqs\.[5](https://arxiv.org/html/2609.25053#S2.E5)–[6](https://arxiv.org/html/2609.25053#S2.E6)and the convolution residual, and joint shuffled rotates complete corrected donor states\. Donor rotations are within equal\-length records, with no self\-donors\.

The bridge is input tokenxL\+1x\_\{L\+1\}; 64 scored targets arexL\+2:L\+65x\_\{L\+2:L\+65\}\. The segmented canonical path consumes the bridge and the first 63 continuation targets as inputs\. A state checkpoint labeled 64 therefore follows 64 post\-handoff inputs, including the bridge\. E002 training uses the bridge plus eight teacher inputs to supply nine output distributions, in one differentiable target call\. Native target traces needed for fitting are offline supervision; they do not imply target historical replay in the deployed handoff\.

For protocol completeness, target\-quality recovery and remaining\-gap reduction are

TQRc\\displaystyle\\operatorname\{TQR\}\_\{c\}=ℓsource4B−ℓcℓsource4B−ℓnative9B,\\displaystyle=\\frac\{\\ell\_\{\\mathrm\{source4B\}\}\-\\ell\_\{c\}\}\{\\ell\_\{\\mathrm\{source4B\}\}\-\\ell\_\{\\mathrm\{native9B\}\}\},\(9\)RGR\\displaystyle\\operatorname\{RGR\}=Δ​NLLbase−Δ​NLLcorrectedΔ​NLLbase\.\\displaystyle=\\frac\{\\Delta\\operatorname\{NLL\}\_\{\\mathrm\{base\}\}\-\\Delta\\operatorname\{NLL\}\_\{\\mathrm\{corrected\}\}\}\{\\Delta\\operatorname\{NLL\}\_\{\\mathrm\{base\}\}\}\.\(10\)TQR normalizes by the target’s advantage over the source; corrected E002 TQR is 0\.405755\. Like NCR, it is a ratio of aggregate means, not a mean of document ratios\. It is undefined for a nonpositive denominator; RGR is undefined for a nonpositive base gap\. Neither normalized score is accuracy\.

For distributionspp\(native\) andqq\(condition\),m=\(p\+q\)/2m=\(p\+q\)/2and

JS\(p,q\)=12KL\(p∥m\)\+12KL\(q∥m\)\.\\operatorname\{JS\}\(p,q\)=\\tfrac\{1\}\{2\}\\operatorname\{KL\}\(p\\\|m\)\+\\tfrac\{1\}\{2\}\\operatorname\{KL\}\(q\\\|m\)\.\(11\)Natural logarithms are used\. Top\-5 overlap is\|top5⁡\(p\)∩top5⁡\(q\)\|/5\|\\operatorname\{top5\}\(p\)\\cap\\operatorname\{top5\}\(q\)\|/5, and entropy is−∑vqvlogqv\-\\sum\_\{v\}q\_\{v\}\\log q\_\{v\}\. These metrics average over the shared target positions and documents\. State error is‖Sc−Snative‖F/max⁡\(‖Snative‖F,10−12\)\\\|S\_\{c\}\-S\_\{\\rm native\}\\\|\_\{F\}/\\max\(\\\|S\_\{\\rm native\}\\\|\_\{F\},10^\{\-12\}\); cosine uses flattened tensors\. New attention entries are compared only after handoff\.

E001’s improvement fraction for documentddis

fd=Δ​NLLd,KV−Δ​NLLd,fullΔ​NLLd,KVf\_\{d\}=\\frac\{\\Delta\\operatorname\{NLL\}\_\{d,\\mathrm\{KV\}\}\-\\Delta\\operatorname\{NLL\}\_\{d,\\mathrm\{full\}\}\}\{\\Delta\\operatorname\{NLL\}\_\{d,\\mathrm\{KV\}\}\}when the denominator is positive\. All 64 qualify\. Its 79\.7% mean is therefore not the ratio of the aggregate 0\.7473 improvement to the aggregate KV\-only gap\. One E001 document has a nonpositive source\-minus\-native denominator and is excluded from document\-level TQR; the reported aggregate TQR uses all documents’ mean NLLs and remains defined\.

The bootstrap samples documents with replacement, preserving each document’s condition pairing\. Ten thousand means are drawn with NumPy’s default generator using frozen seeds 2026083103 \(E001\) and 2026090103 \(E002\); percentile endpoints are 0\.025 and 0\.975\. The RGR interval recomputes its ratio of means inside each bootstrap resample\. No token\-level resampling, alternate confidence procedure, or multiplicity\-adjusted exploratory claim is substituted for the frozen protocol\.

The E002 full\-state gate requires a positive base\-minus\-corrected CI, remaining\-gap reduction at least 0\.25, corrected excess NLL at most 0\.10, NCR at least 0\.90, and upper CI endpoints below zero for corrected\-minus\-source and corrected\-minus\-shuffled\. The stronger near\-native gate additionally requires excess NLL at most 0\.05, NCR at least 0\.95, and top\-1 agreement at least 0\.90\. Only that stronger outcome unlocks the 16K branch\. E002’s recorded verdict isFULL\_STATE\_HANDOFF, notNEAR\_NATIVE\_HANDOFF; all three stronger thresholds fail\. E001’s recorded verdict isRECURRENT\_STATE\_TRANSLATABLE: its mean and median document improvement fractions exceed the 25% contribution criterion\. Its fully translated condition fails the stronger full\-state gate, with excess NLL 0\.207032 above 0\.20 and TQR−0\.413227\-0\.413227below 0\.75\. Gates are experiment\-specific\. Both canonical results explicitly record the 16K branch as unrun\.

## Appendix EFull\-Precision Continuation Results

Tables[7](https://arxiv.org/html/2609.25053#A5.T7)–[8](https://arxiv.org/html/2609.25053#A5.T8)retain the six\-decimal numerical presentation\. The included verified JSON retains full floating\-point values\. Figure[5](https://arxiv.org/html/2609.25053#A5.F5)shows the Experiment 2 controls on a common overview scale and an explicitly expanded fidelity scale\. No results are pooled across the two corpora\.

Table 7:E001 LOCKED results: 64 PG19 documents, 4K prefix, 64 teacher\-forced targets\. NLL and excess NLL are nats/token; top\-1 is native\-target prediction agreement\.Table 8:E002 LOCKED results: 64 fresh FineWeb\-Edu documents, 4K prefix, 64 teacher\-forced targets\. All entries are document means or defined ratios of document means\. NLL and excess NLL use nats/token\. NCR, TQR, top\-1 agreement, and JS have distinct meanings; native/empty NCR and native/source TQR are fixed by definition\.Figure 5:E002’s complete test comparison\. Markers are means over 64 paired documents\. The left axis includes empty and shuffled controls; the right expands the scale and includes TTT\. Corrected excess NLL is 0\.076367\. Base\-minus\-corrected improvement is 0\.029022 nats/token \(95% paired document bootstrap CI \[0\.022828, 0\.035413\]\); plotted means are not independent token\-level replicates\.
## Appendix FComplete Component Factorial

Table[9](https://arxiv.org/html/2609.25053#A6.T9)includes every D/T cell\. Coding D as−1\-1and T as\+1\+1, a main effect is the within\-document signed sum over eight cells divided by four\. Pairwise interactions divide by two, yielding a difference\-in\-differences averaged over the remaining factor; the three\-way contrast is the full signed sum\. Table[10](https://arxiv.org/html/2609.25053#A6.T10)shows these contrasts and their frozen intervals\. A LOCKED interaction can have an interval excluding zero and still fail the preregistered 0\.02\-nat materiality criterion\. That is the case forK×RK\\times R\. We therefore report failure of the specified material replication criterion, rather than asserting that all interactions are zero\.

Table 9:Every E002 factorial cell’s excess NLL, in nats/token\. Validation has 32 fresh FineWeb\-Edu documents; LOCKED has 64 different documents\. Both use 4K prefixes\. Base selection uses validation alone\.Table 10:E002 orthogonal within\-document factorial contrasts, in nats/token, with 95% paired document bootstrap intervals\. Main effects are translated minus direct, averaged over the other two components\. Pairwise material replication requires matching signs and absolute LOCKED estimate at least 0\.02; no pairwise contrast satisfies both requirements\.
## Appendix GSecondary State Diagnostics and Post\-Verdict Ablations

Figure[6](https://arxiv.org/html/2609.25053#A7.F6)presents the preregistered state\-tracking endpoints from the frozen evidence\. E001 statistics are summarized in a post\-verdict derived artifact, but the tracked checkpoints and measurements were specified before the LOCKED run\. The E002 base/corrected trajectories are close, and corrected state is not uniformly closer at the earliest inputs\. Continued target computation reduces recurrent mismatch without eliminating it\. Neither state distance nor cosine is a success gate\. E001 full\-translated recurrent normalized error declines from 0\.4687 after one new input to 0\.4053 after 64\. E002 corrected error declines from 0\.6239 to 0\.3650 through 256 inputs, while cosine rises from 0\.7778 to 0\.9266\. Shared teacher inputs and gated forgetting can reduce discrepancy without recovering all prefix information\.

Figure 6:Secondary recurrent\-state convergence under shared teacher\-forced inputs\. Each marker averages layer/head state errors over 64 documents within the indicated experiment\. The horizontal axis is logarithmic with only the recorded checkpoints shown\. E001 and E002 use different LOCKED corpora and are not paired with one another\. E002’s 256\-input state measurement is not a 16K\-context test or a free\-generation evaluation\.### G\.1 Post\-verdict component removals

After the 4K verdict was frozen, E002 disabled components of the selected correction on the same LOCKED documents\. Table[12](https://arxiv.org/html/2609.25053#A7.T12)shows the resulting impact relative to the full correction\. Removing recurrent correction has the largest aggregate effect among complete\-component removals; removing convolution correction has a small interval spanning zero\. The middle recurrent third is the most sensitive of the three depth blocks under this intervention\. These are post\-verdict diagnostics with no multiplicity correction, no refitting, and no independent confirmation set\. They describe sensitivity of the fitted correction; they do not establish the best sparse architecture or authorize changing the selected result\.

Table 11:Post\-verdict E002 ablations on the same 64 LOCKED documents\. R denotes recurrent state\. The named correction is removed; positive impact is increased NLL relative to the complete correction\. All values are nats/token; intervals are paired document bootstrap intervals\. These diagnostics did not determine or revise the canonical verdict\.
Table 12:E002’s frozen engineering timing summary\. Primitive values are document wall\-clock medians; the final two rows are arithmetic combinations of those medians\. The accounting excludes the preceding state\-translation pass and other costs discussed in the text, so the reported margin is not a measured production speedup\.

## Appendix HPrototype Timing and Its Accounting Boundary

Table[12](https://arxiv.org/html/2609.25053#A7.T12)preserves E002’s recorded timing summary\. Each primitive is aggregated as its document median\. The available budget is the native\-prefill median minus the source\-prefill median; the reported margin further subtracts the sum of base construction, correction, installation, and bridge medians\. A difference or sum of medians is not an independently measured median end\-to\-end latency\.

The code makes an additional exclusion explicit: base\-state construction selects components from*already materialized*source and translated states\. The translation pass occurs earlier and is not charged to the reported 131\.310\-ms margin\. This margin also does not establish the full cost of extraction, serialized evidence I/O, model loading, batching, scheduling, or a GPU\-local deployment\. The original report’s “end\-to\-end” characterization is therefore too broad for the underlying aggregation; the numeric artifact is retained, and the narrower code\-defined accounting is reported here\. No production latency saving follows from the table\.

## Appendix IEvidence Integrity and Paper Reproduction

The paper uses the frozene001\_handoffande002\_couplerdirectories supplied with the specification\. The LOCKED raw evidence and E002 fitting artifacts are stored in the corresponding original E001/E002 archive directories\. Their raw SHA\-256 values match the canonical result references:

> E001:1639038217b9bb376de33be57ab624e083a093a45dc5a5f8749b565247c9e546 E002:a189c454a4f52a8ceb03ec09e0e109efa139ce01225a472c59a70148acd0c629

E001’s frozen execution manifest hash is

> 69bcca1bea1ecce2cc5c7c9728581aeca8ed9abf56028c2cd9c2fd7498efb0c9,

and E002’s is

> 4ea9e85a2450a6c0f8dbb979f6ecfba32d4f45606103a946a32595208359070c\.

The selected correction tensor SHA\-256 is

> 3565d5ddb81b9c195e0cc02e143acf85a49f8fe732a794fe5d1d1c2463cf6331\.

The combined metadata\-plus\-tensor correction hash is distinct from this file hash:

> e93a15a21b6eba37ec794d94c45780059a3653f9466c26db1b20960419260db3\.

The accompanying LaTeX project contains a claim ledger, an evidence map, input hashes, verification outputs, and deterministic figure/table scripts\. The extraction script reads frozen raw records and reproduces aggregate NLLs, paired bootstrap intervals, factorial selection and contrasts, normalized metrics, and correction inventory\. It performs no model evaluation, translator fitting, correction training, or LONG evaluation\. Rendering scripts operate on that verified extraction and write only into the paper project\. All reported primary intervals remain the canonical frozen intervals\. The README gives exact local source paths and build commands\.

Similar Articles

Cross-Model Memory Transfer via Target-Side Reader Adaptation

Hugging Face Daily Papers

This paper investigates cross-model memory transfer, demonstrating that target-side reader adaptation is crucial for utilizing frozen memory tables across different large language models. It introduces methods for reusable knowledge artifacts with optional adaptation to improve alignment.

Enabling KV Caching of Shared Prefix for Diffusion Language Models

arXiv cs.LG

This paper proposes BiCache, a novel KV caching technique for shared prefixes in diffusion language models, which avoids accuracy collapse by dynamically reusing cached keys and values in shallow layers and achieves 36.3%–98.3% throughput improvement.