paper-with-me

Papers

A Single-Layer Model Can Do Language Modeling

2026-05-11 · Zanmin Wang arxiv

Modern language models scale depth by stacking layers, each holding its own state - a per-layer KV cache in transformers, a per-layer matrix in Mamba, Gated DeltaNet (GDN), RWKV, and xLSTM. Biological systems lean heavily on recurrence rather than on stacking. We ask how far that shape can go on language modeling. We propose Grounded Prediction Networks (GPN): one state vector revisited at every step through a single recurrent block - one FFN, one shared matrix memory. At 130M parameters, a 1-layer GPN+M reaches FineWeb-Edu perplexity 18.06, within 13% of a 12-layer Transformer++ (16.05) and 18% of a 10-layer GDN (15.34); a 2-layer variant closes the gap to 6%/11%. We do not match the deep baselines. Because the working context is a single vector, we can directly inspect its geometry: a persistent default-token direction, a content-bearing horizon of tens of tokens, and memory heads that split spontaneously into fast and slow retention pools.

📄 PDF Abstract BibTeX arXiv:2605.10643

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

M$^2$RNN: Non-Linear RNNs with Matrix-Valued States for Scalable Language Modeling

2026-03-15 · Mayank Mishra, Shawn Tan, Ion Stoica, Joseph Gonzalez 외 arxiv

Transformers are highly parallel but are limited to computations in the TC$^0$ complexity class, excluding tasks such as entity tracking and code execution that provably require greater expressive power. Motivated by thi…

Transformer Quality in Linear Time

2022-02-21 · Weizhe Hua, Zihang Dai, Hanxiao Liu, Quoc V. Le

We revisit the design choices in Transformers, and propose methods to address their weaknesses in handling long sequences. First, we propose a simple layer named gated attention unit, which allows the use of a weaker sin…

8kLanguage ModelingLanguage ModellingMasked Language Modeling

Intra-Layer Recurrence in Transformers for Language Modeling

2025-05-03 · Anthony Nguyen, Wenjun Lin

Transformer models have established new benchmarks in natural language processing; however, their increasing depth results in substantial growth in parameter counts. While existing recurrent transformer methods address t…

Language ModelingLanguage Modelling

FiLM-Coordinated Dual-Branch Transformer for Global-Local Dependency Modeling in Language Modeling

2026-06-19 · Zhiqiang Zhou, Xu Ling, Junliang Dai arxiv

Standard Transformers use a single self-attention pathway to model both global dependencies and local patterns, creating tension between long-range structural reasoning and fine-grained local representation learning. We …

Representation Learning

Simplified State Space Layers for Sequence Modeling

2022-08-09 · Jimmy T. H. Smith, Andrew Warrington, Scott W. Linderman

Models using structured state space sequence (S4) layers have achieved state-of-the-art performance on long-range sequence modeling tasks. An S4 layer combines linear state space models (SSMs), the HiPPO framework, and d…

Computational EfficiencyListOpsLong-range modelingPathfinder+3