论文 · Smooth Reading: Bridging the Gap of Recurrent LLM to Self-Attention LLM on Long-Context Understanding
基础信息
- 论文:Smooth Reading: Bridging the Gap of Recurrent LLM to Self-Attention LLM on Long-Context Understanding
- 作者:Kai Liu, Zhan Su, Peijie Dong, Fengran Mo, Jianfei Gao, Shaoting Zhang, Kai Chen
- 会议:ICLR 2026
- 主题:Recurrent LLM, long-context understanding, End-to-End Multi-Round inference, architecture-inference co-design
- 核心贡献:本文认为 Recurrent LLM 长上下文表现差并非只因架构记忆不足,而是 One-Round inference 与固定大小记忆不匹配;提出 Smooth Reading,将 Recurrent LLM 与 End-to-End Multi-Round inference 结合,通过 chunk reading、contextual summary、hidden memory preservation 和 early stopping,在保持线性复杂度的同时接近或超过 Self-Attention LLM 的长上下文表现。
Q1. 研究动机
Self-Attention LLM 长上下文能力强,但计算复杂度随长度二次增长;Recurrent LLM 线性计算、常数内存,更适合超长上下文,却在 LongBench 等任务上落后。以往研究主要改架构、增大记忆容量,但仍未追平 Self-Attention。作者认为问题在于传统 One-Round inference 把整个长上下文一次性塞入固定记忆,导致 memory overwhelm。