Interrupting the Loop: Periodic Subject Changes Raise Judged Surprise and Connection in Base Language Models
让基础语言模型在没有任何任务的情况下自说自话,但每隔几百个词硬塞进一个新话题,会让它的文字显得更出人意料、更有内在联系
研究者只给基础语言模型一句开头,不给任何指令,强迫它连续生成数千个词元,并在24种不同干预条件下进行对比。结果显示,效果几乎全部来自两个简单操作:抑制字面重复的机制,以及每隔几百个词元偷偷插入一个全新主题句子,其中插入新主题的操作贡献更大,显著提高了被判定的惊讶感和联系感得分。研究还发现并修正了AI评判者在阅读长文本时的盲点,比如把实验者插入的句子误判为模型自己写的,或把模型重复自己早先内容误判为新颖。
他们做了什么
- 给三个基础语言模型(仅经过预训练、未经指令微调)一句开场白,不设任何任务,强迫其连续生成4500个词元
- 在结合重复抑制机制(habituation)与周期性隐藏插入新主题(interruption)的24种条件中,插入新主题使被判定的惊讶感提高1.2到1.4分,联系感提高0.8分,效果超过仅用重复抑制
- 要求延续话题的连接词反而拉低了分数,单纯的分段在新文本上没有可检测的效果,重置上下文的效果不逊于保留上下文
- 研究发现AI评判者有时会把实验者插入的句子误判为模型自己写的,也会把模型在评判者看不到的范围之外重复自己早先内容误判为真正的惊讶与联系,研究据此修正了评估流程
- 在一个可验证的问题(在线装箱问题)上,同样的插入新主题操作使有效且互不相同的候选方案数量提高了三到四倍,但并未提升最优方案的质量



| arm | habituation | interruption |
|---|---|---|
| bare | off | none: continuous generation, EOS masked |
| bare + habituation | on | none |
| habituation, EOS allowed | on | none; the model may emit end-of-text and start a new document |
| habituation 1.3 | on (stronger) | none |
| interruption, no habituation | off | neutral subject change every 150 or 300 tokens, context preserved |
| habituation + interruption 150 | on | neutral subject change every 150 tokens, context preserved |
| salience only | on | none; salience events mark review windows |
| DREAM scaffold | on | full scaffold: salience, in-loop judge, kick, reseed with forgetting, re-encounter |
| content: re-encounter / premise / own past | on | every 150 tokens: a return-to-the-premise stitch / the premise itself / a window of the stream’s own past (≥400 tokens back) |
| salience: re-encounter | on | the stitch injected on each salience event, no judge gate |
| period 75 / 300 / 600 / 900 | on | neutral subject change at other periods (900 also with the stitch) |
| sham break 300 | on | a paragraph break (“\n\n”) every 300 tokens, nothing else |
| sham continuity 300 | on | “And so, as before,” every 300 tokens: a boundary that asks for continuity |
| reset + subject change 300 | on | neutral subject change every 300 tokens on a reset context (premise + injected sentence only) |
| reset + break 300 | on | a paragraph break every 300 tokens on a reset context |
| judge-gated 150 | on | the neutral change every 150 tokens unless Opus reads the last 128 tokens as a find (surprise and coherence ≥5), which is left to run |



| Qwen3-30B-A3B | Qwen3-8B | OLMo-2-13B | |||||||
|---|---|---|---|---|---|---|---|---|---|
| arm | S | C | H | S | C | H | S | C | H |
| bare | 0.45 | 0.30 | 2.52 | 0.43 | 0.40 | 3.88 | 1.28 | 0.93 | 3.03 |
| bare + habituation | 1.58 | 1.28 | 4.45 | 1.37 | 1.00 | 4.35 | 1.96 | 1.26 | 3.99 |
| habituation + interruption 150 | 3.02 | 3.68 | 6.12 | 2.76 | 3.17 | 5.15 | 2.77 | 2.87 | 4.05 |
| DREAM scaffold | 2.70 | 1.85 | 6.02 | 2.70 | 2.35 | 5.38 | 3.60 | 2.23 | 6.23 |



为什么重要
如今越来越多长文本由AI评判者来打分,这篇论文具体指出了这种评判方式容易被欺骗的几个环节,并给出了修正方法。它还表明,看似复杂的、模仿人脑创造力机制的架构,其实可以被一个简单的周期性干预取代,这对设计AI写作工具或创意生成系统很有参考价值。



本文术语
- habituation(习惯化/重复抑制) · 降低最近重复出现词语被再次选中概率的机制,用于防止字面循环
- interruption(插入干扰) · 每隔几百个词元偷偷插入一个新主题句子,打断原有话题走向的操作
- 基础语言模型(base language model) · 只经过预训练、未经过指令跟随训练的原始模型
- 判定窗口(judged window) · AI评判者用来打分而截取的一段生成文本片段
- 在线装箱问题(online bin packing) · 物品逐个到来时需立即分配到箱子中的优化问题,可用验证器检验解的有效性
论文原文摘要(英文)
Where does the novelty a base language model produces with no task come from, and what can an LLM judge of a long stream actually see? We dismantle a cognitively inspired generation loop over 24 conditions on three base models. Most of its effect lives in one operation: a new subject injected every few hundred tokens (an interruption) into a stream whose literal repetition is damped (habituation). We judge windows of generated text only, with the premise as the unit (n=10) and a judge measured for repeatability, against a second judge family and against human readers. Under that protocol the interruption raises judged surprise by 1.2 to 1.4 points and connection by 0.8 over habituation alone. A connective that asks for continuity hurts; a bare paragraph break adds nothing detectable on fresh text; a reset context does at least as well as a kept one; and a pre-registered replication on new premises confirms the primary contrast. Three things the window judge could not see changed the first version of this study, and we think they are of general use. The judge scores the experimenter's injected sentence as the model's own. A fixed rotation of injected sentences makes the model replay its earlier segments from beyond the judge's horizon, and the judge scores the replay as surprise and connection (65-80% of post-interruption windows at periods 150-300). And the local gains do not compose: no arm produces an integrated document. The salience monitor, the in-loop judge, memory across interruptions and a judge-gated Review run with a gate that opens add nothing. On a problem with a verifier (online bin packing), the interruption multiplies valid, distinct candidate heuristics three- to fourfold without raising the quality of the best. We report an evaluation protocol for long generation and a controlled characterization of a simple intervention, not a mechanism of creativity.
在 arXiv 阅读最新论文
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive Alignment在正式微调前先偷看几步训练的梯度,让LoRA的初始化更聪明
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI助手在该向你提问的时候,却更愿意自己去核实事实
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
- Generating Diverse Personas for User Simulators to Test Interview Dialogue Systems要测试访谈式对话系统需要大量不同性格的虚拟用户,这项研究用大语言模型自动生成这些虚拟用户人设
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured Partitioning别再机械切分时间序列,按语义把它切成有意义的块
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysis让AI分析脑影像数据时,把“为什么这个结论可信”也一并记录下来
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-Hailing滴滴把打车派单从预测-计算-匹配三段式流程改成一次生成完成,线上效果提升明显
METAL LAB 最新报道
图片来源: Roberto I. Ono Filho et al., arXiv:2608.19893, CC BY 4.0