Papers › CART: Context-Anchored Recurrent Transformer -- A Parameter-Efficient Architecture...

CART: Context-Anchored Recurrent Transformer -- A Parameter-Efficient Architecture with Learned Stability

31 May 2026arXiv:2606.01495added by Syntology

Chad A. Capps

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

We present CART (Context-Anchored Recurrent Transformer), a parameter-efficient language model that reuses a single shared core block R times across depth. Unlike prior looped transformers that recompute key-value tensors at every iteration, CART computes K and V once from a multi-layer prelude and has the recurrent core cross-attend to those frozen tensors via multi-head latent attention. A learned Linear Time-Invariant (LTI) gate keeps the recurrence stable: its spectral radius settles in a narrow band (rho in [0.79, 0.83]) across all 36 fully-trained configurations. We evaluate CART on single consumer GPUs in two stages: a 64-configuration screen at 3,000 steps, then 36 configurations (P=6, R in {6,8,10}, three seeds) trained for 30,500 steps (~1B tokens). Two patterns hold across widths d in {256,512,768,1024}: prelude depth P dominates loop count R, and the Stage-1 ranking of R reverses at full training (R=6 becomes best at d>=512). At the binding d=1024 parameter-parity test, CART does not beat a parameter-matched dense baseline, losing by 1-2% at stored-parameter parity and by ~10% at effective-parameter parity. Diagnostic ablations split the effective-parameter gap into ~5% from weight sharing and a residual ~5% from the heterogeneous prelude/anchor/core/coda framing; the recurrent-core machinery (hyper-connections, LTI gate, loop-index embedding) is individually vestigial. Variable-R inference degrades on both sides of the trained R, a negative result for test-time depth scaling under this recipe.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2606.01495")

Code

Syntology Ran 7 of 16 code samples harvested from 1 repository linked to this paper; 9 have no recorded run. Of those that ran: 1 ran · our draft was wrong; 6 ran with no contract checked.

By repository: found in paper text by Syntology: 16 samples from 1 repository, 7 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

ccapps42/CART found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

16 samples harvested; 7 ran; 0 honoured the contract we drafted; 9 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · our draft was wrong
6ran
9unverified

Licence: 0 of the 16 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from ccapps42/CART. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

HyperConnection ccapps42/CART/model/cart.py found in paper text by Syntology ran fingerprinted MIT (permissive) · e70ccca8c4433ab8 · report
LTIInjection ccapps42/CART/model/cart.py found in paper text by Syntology ran · metamorphic tier: invariant MIT (permissive) · 34d128600564fc2a · report
LoopIndexEmbedding ccapps42/CART/model/cart.py found in paper text by Syntology ran · metamorphic tier: invariant MIT (permissive) · 85330cf0bbe2d9e8 · report
MLACrossAttention ccapps42/CART/model/cart.py found in paper text by Syntology ran MIT (permissive) · b175bb6a99225d0b · report
MLAKVProjection ccapps42/CART/model/cart.py found in paper text by Syntology ran · metamorphic tier: deterministic MIT (permissive) · a21a4d06f59f6f55 · report
RMSNorm ccapps42/CART/model/cart.py found in paper text by Syntology ran · metamorphic tier: invariant MIT (permissive) · 5e72e01b3a174cc0 · report
rotate_half ccapps42/CART/model/cart.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 4da1a1beab34982c · report
CART ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · 9da26ca8855b57eb · report
CARTConfig ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · c74c69070494a0c6 · report
CodaLayer ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · 3be28e5f513e072b · report
CoreBlock ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · a41c55d1f28a5a54 · report
CoreBlockSelfAttn ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · f9264024bf7be927 · report
MLASelfAttention ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · b01f021350a0198e · report
PreludeLayer ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · e3a8d7c1a3006108 · report
RotaryEmbedding ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · 97fbea8bac3c5277 · report
apply_rotary ccapps42/CART/model/cart.py found in paper text by Syntology unverified MIT (permissive) · f8acf5fe0065d80e · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.01495, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections