循环环形变换器(Recurrent Looped Transformer,RLT)架构
战略概览
- 01.RLT 配备了一个因果编码器,用于构建全局键值(KV)记忆,并搭配一个循环解码器,该解码器将其最终隐藏状态和逐层滑动窗口注意力缓存贯穿每个提示和响应令牌。参考配置堆叠了48层编码器和48层解码器,每个令牌执行96个逻辑块。
- 02.由于解码器是循环的,位置 t 处的令牌位于一条长度为 t 乘以解码器深度的循环路径末端,作者称之为无界时间深度——并非每个令牌的计算量无界,因为每个令牌的计算成本保持固定。
- 03.相同的状态转移规则被重复用于预训练、监督微调、采样以及强化学习回放和 rollout 过程中,在提示到响应的边界处不进行重置,这与普通的仅解码器变换器在预填充和解码路径之间切换的做法不同。
- 04.题为《循环环形变换器:具有无限时间深度的潜在推理》的技术报告由普林斯顿大学研究员Yifan Zhang于2026年9月12日发布,托管在 alphaXiv 和作者自己的项目页面上,而非正式的 arXiv 平台。
- 05.代码、论文和项目页面均在 Apache 许可证 2.0 下发布。
- 06.该论文未报告任何大规模的推理质量、效率或强化学习扩展结果;它仅定义了架构、执行调度和强化学习回放合约,将性能提升描述为研究目标而非实测成果。
- 07.仓库中唯一的实证证据是一个小型合成状态跟踪测试(约79,000个参数,3个随机种子),明确标注为初步结果:在训练长度延长至4倍的情况下,RLT 在奇偶任务上优于标准变换器,但在五状态转移任务上表现大致相当甚至更差。
- 08.另有独立测试报告指出,在相同79K参数的状态跟踪设置下,普通GRU在4倍训练长度下优于RLT;此外,在发布后几天内出现了两个非官方的开源重新实现(lucidrains发布的可pip安装的rlt-pytorch,以及开发者awdemos的第二个移植版本)。
“无限推理深度”与实际数据之间的差距
核心主张是推理深度随序列长度增长而增长,同时每个令牌的计算成本保持固定——位置 t 的令牌实际上处于一条长度为解码器深度 t 倍的循环链之后,作者将其称为无界时间深度而非无界计算量 [3]。但所提供的唯一测量数据来自一个约79,000参数的合成模型。在训练长度延长至4倍的奇偶任务中,RLT 得分为60.8%,而普通变换器基线约为48%——差距确实存在,但远未达到此类玩具任务本应展示的接近完美准确率。在相同4倍长度的五状态转移任务中,RLT 得分为20.7%,而基线约为21%,意味着该架构所宣称的深度优势在另一类任务中完全消失 [1]。另有独立测试报告指出,一个更简单、历史悠久的GRU单元在相同状态跟踪设置中直接击败了RLT [4],削弱了该架构复杂性带来实际收益的说法。
统一训练、采样和强化学习的状态转移规则——代价几何?
病毒式炒作、快速重新实现与审慎接受
历史背景
关键关系图
事实来源
[1] Recurrent Looped Transformer (GitHub repository)
[2] Recurrent Looped Transformer: Infinite Reasoning Depth? - explainx.ai
[3] Yifan Zhang's RLT Grows Transformer Depth With Every Token Generated - AlphaSignal
[4] A Princeton Researcher Proposes Recurrent Looped Transformer (RLT) - MarkTechPost
[5] lucidrains/RLT - unofficial PyTorch implementation
[6] RLT-pytorch on PyPI
[7] awdemos/recurrent-looped-transformer - independent implementation
[8] Recurrent Looped Transformer discussion - Hacker News
来源文章
Chinese researcher Yifan Zhang developed a new AI architecture called Recurrent Looped Transformer (RLT) that merges transformer and RNN concepts for infinite reasoning depth.
A new technical report proposes the Recurrent Looped Transformer (RLT), a transformer architecture with recurrent decoding over every token.
Yifan Zhang's RLT Grows Transformer Depth With Every Token Generated
A Princeton Researcher Proposes Recurrent Looped Transformer (RLT) that Carries Decoder State across Every Token, Fixing 96 Blocks per Token with Unbounded Temporal Depth
THE SIGNAL.
“指出未发布任何基准测试结果、训练好的检查点或可证伪的性能声明,并提出可解释性担忧,因为在此方案下,潜在推理从未以外部文本形式呈现。结论认为病毒式宣传超出了实际研究贡献。”
“最实质性的反对意见并非关于循环/循环变换器变体在原则上是否可行,而是关于可监控性和终止问题——循环机制将模型的部分推理过程转移到不可读的数值潜在状态,而非可读的思维链文本。”
“We are at the dawn of Superintelligence. Introducing the Recurrent Looped Transformer (RLT), We now have Transformers with Infinite Reasoning depth. From now on, we should pace progress at the Open Frontier of Superintelligence, Until Safe Superintelligence is achieved.”
“I put together a mega write-up on GPT-6 Astra & looped transformers. How looped transformers / recurrent depth works, cost-tradeoffs, whether it hides reasoning traces, with lots of figures and a tour of recent looped transformer research.”
“"Recurrent Looped Transformer" This paper makes the decoder recurrent across every prompt and response token, while a causal encoder provides reusable global KV memory. Longer sequences then create deeper latent computation paths without adding more physical layers, while...”
“A Princeton Researcher Proposes Recurrent Looped Transformer (RLT) that Carries Decoder State across Every Token, Fixing 96 Blocks per Token with Unbounded Temporal Depth”

Recurrent Looped Transformer Explained: New Benchmarks Put "Infinite Reasoning Depth" to the Test

Recurrent Looped Transformer: Infinite Depth Through Hardware Co-Design

Recurrent Looped Transformer