#2026-08-13 AI/LLM 最新论文与研究热点简报

覆盖窗口:以北京时间 2026-08-13 08:00 为截点,重点覆盖 arXiv 于 8 月 12 日公布的新批次(论文多在 8 月 11 日提交/更新)及 Hugging Face Papers 8 月 12 日批次;个别与 wenjun 主线高度相关的工作回看至 7 月底或纳入昨日重大更新。

来源可用性:arXiv 五个分类 RSS、摘要页与重点论文 PDF 全文可访问;Hugging Face Daily Papers API、GitHub API/Trending 可访问。Google Scholar 返回 403。X/Twitter 搜索页返回仅依赖 JavaScript 的空壳,无法稳定核验帖子与时间戳,因此本期不引用无法由论文、项目页或仓库复核的社交动态。

#一、先看结论:今天最强的 5 个研究信号

  1. Agent 的“记忆过多”正在成为与遗忘同等级的问题:对 1,867 个仓库的研究发现,CLAUDE.md 类 agentic instructions 生命周期内平均增长 226%;关键不是再做一次无依据摘要,而是保留每条规则的 rationale/provenance,让系统未来能安全删除。
  2. latent world model 的核心不只是预测误差,而是规划几何:Temporal Straightening 通过压低 latent trajectory curvature,让欧氏距离更接近真正的轨迹距离;一篇独立复现又显示,一步预测指标根本不能稳定排序长时域 planning 成功率。
  3. 长轨迹 Agent RL 已经进入“环境 × 算法 × kernel × serving”联动优化阶段:SINKFLEX-RL 从 sink-aware attention 降低单条 rollout 的显存;MISA-T 则在共享推理池中管理异构 rollout 的 KV residency 与 workload mixture。
  4. 自演化正在从“让一个 Agent 永生”转向“让环境、项目和可验证版本史永续”:EvoX Genesis 让短生命周期 coding agents 围绕持久 repository world 递归协作;SBCO 则说明无需自改代码,也可通过 verifier bank 与 block-coordinate optimization 改进 harness。
  5. 数据与后训练的重点是可学习信号,而不只是平均效应或合成规模:SearchArt 用 evidence graph 和三重验证构造长程搜索数据;Reward-SNR 工作提醒,如果实例级 reward effect 低于统计可检测下限,再聪明的 routing/RL 也只是在拟合噪声。

#二、重点精读(Top 5)

#1. Catastrophic Remembering:为什么 CLAUDE.md 只会越写越长?

  • 类别Code Agent / Agent Memory / Continual Learning / Context Compression
  • 标题Why Does CLAUDE.md Keep Growing? Catastrophic Remembering in Agentic Coding
  • 来源与日期:arXiv:2608.11095,2026-08-11 提交,8 月 12 日进入新批次
  • 一句话核心贡献:把不断追加、无法安全删除 agentic instructions 的现象定义为 catastrophic remembering,并用 1,867 个 GitHub 仓库、247,694 条 instruction lifetimes 证明其普遍性;保留 outcome-grounded rationale 的 prompt comments 可移除 99.3% 的多余规则。

为什么值得关注?

论文抓住了一个很实际的非对称性:添加一条“以后不要再犯”的规则很便宜;但当失败案例、适用条件和引入理由丢失后,判断它能否删除需要重新考虑它与其他规则的组合,最坏可呈指数复杂度。实证上:

  • agentic prompt 在生命周期内平均增长 226%,每次 commit 净增约 4.9 条 instruction;
  • instruction 越老,删除概率反而越低(log-hazard -0.032/commit);
  • 在可知最优 prompt 的 inverted IFEval worlds 中,带 rationale 的 comments 把 excess growth 从 +211.3% 压到 +1.4%;
  • 在 WildIFEval 变体中,真实 instruction-following satisfaction 从 50.4% 升至 62.0%,相对提升 23.1%。

这比通用“压缩 prompt”更深一层:可删性依赖因果出处,而不仅是文本冗余度。 一个短但删掉罕见安全约束的 prompt,可能比冗长 prompt 更坏。

与 wenjun 方向的关系:对长轨迹 Agent,memory item 应携带 trigger → observed failure → repair → verifier → expiry/invalidating evidence,而不是只有一段自然语言结论。它可与昨日 CommitKV 的 lifecycle 观点合并:token/KV 的 retirement 由交互阶段决定,长期规则的 retirement 由 rationale 与验证证据决定。


#2. Temporal Straightening:为 latent planning 学“更直”的几何,而不是只学好看的表征

  • 类别Model-based RL / Latent Reasoning / World Model / Planning
  • 标题Temporal Straightening for Latent Planning
  • 来源与日期:arXiv:2603.12231v3,2026-08-11 更新为 ICML 2026 camera-ready;项目页代码
  • 一句话核心贡献:在 JEPA world model 的 encoder/predictor 联合训练中加入局部轨迹曲率正则,使 latent Euclidean distance 更接近 geodesic distance,从而改善 gradient-based planning 的条件数、稳定性和目标到达成功率。

为什么值得关注?

预训练视觉 encoder 往往擅长语义,却不一定适合 control:两个看起来语义相似的状态,在动力学上可能隔着障碍;反之,沿可行动轨迹相邻的状态可能在像素/语义空间被拉远。Temporal Straightening 不直接要求 latent predictor 更复杂,而是约束连续时间步形成更接近直线的局部轨迹,让简单距离与梯度更能代表“朝目标走”。

这对 model-based RL 有一个重要判断:planning representation 的质量不能只用 reconstruction、one-step prediction 或 probe accuracy 衡量,而要看它诱导的优化景观。

与 wenjun 方向的关系:可直接迁移到 LLM Agent latent world model。令每一步为 observation → thought/action → environment transition,学习 action-conditioned latent dynamics;straightening 的目标不是把所有语义压平,而是让同一 skill/operator 下的有效轨迹低曲率,同时在 failure boundary、tool mode switch 或不可逆 commit 处允许高曲率。它也给“latent-space reasoning”一个可测指标:中间 latent 是否真正让规划更容易,而不只是 probe 更线性。


#3. SINKFLEX-RL:长程 tool-use RL 不只缺算法,也缺模型特定的正确 attention 路径

  • 类别LLM Agent / Post-training RL / Tool-use / Systems
  • 标题Efficient Reinforcement Learning for Long-Horizon Tool-Use Agentic Tasks
  • 来源与日期:arXiv:2608.10357,2026-08-11;8 月 12 日进入新批次
  • 一句话核心贡献:提出 SINKFLEX-RL,把 Gymnasium dual-control 环境、VERL 式 rollout dataflow、无独立 value model 的 group-relative optimization 与 sink-aware FlexAttention 组合起来,使模型特定的 attention sink normalization 在 causal/sliding-window mask 下保持正确。

为什么值得关注?

很多 Agent RL 工作只报告 advantage 公式,却把环境封装、mask、tool interaction 和 kernel 当作实现细节。本文说明这些层会直接决定训练能否跑起来:

  • Tau2Bench retail 的初步训练中,validation mean@1 reward 从约 0.25 升至 0.44;
  • 固定配置下,4,096 tokens 峰值显存从 28.06GB 降至 22.52GB(-19.7%);
  • 8,192-token 配置使用 25.53GB,而 eager baseline OOM。

但要冷静:结果仍是单一 domain 的 preliminary run,不是成熟的算法 SOTA;其价值更偏 reproducible systems recipe,而非证明 group-relative RL 本身解决了长程 credit。

与 wenjun 方向的关系:做 Dreamer-for-LLM-Agent 时,world-model imagination 会让 rollout 数和序列长度同时放大。必须把 imagined/real trajectory 的 mask、sink、KV lifecycle、tool wait time 与 policy version 一起纳入系统设计,否则理论上的 sample efficiency 会被显存和 serving goodput 吞掉。


#4. Persistent Recursive Worlds:持久化项目,不必持久化 Agent

  • 类别Code Agent / Self-evolving Agent / Environment Design / Long-horizon Agent
  • 标题Persistent Recursive Worlds Enable Autonomous Software Evolution
  • 来源与日期:arXiv:2608.10450,2026-08-11;Genesis 仓库
  • 一句话核心贡献:EvoX Genesis 把 software project 表示为由 accepted version 与 repository path 定位的持久 recursive world;短生命周期 agents 可递归委派局部任务,只有通过接受的变更才推进共享版本史。

为什么值得关注?

这篇工作把 self-evolving coding 的“主体”从单个 Agent 改成了环境:agent 可以不断死亡、替换、丢失 session,但 repository、测试、accepted consequences 和子世界边界持续存在。作者报告:

  • 从没有 compiler implementation 的仓库出发,用 DeepSeek V4 Flash 构建约 25 万 tracked lines 的 Rust C compiler;
  • 运行超过 120 小时、归档 1,000+ agent episodes,模型 token 费用约 44 美元;
  • compiler 通过完整 c-testsuite 和大部分 LLVM/Csmith tests;
  • 另一个世界把 13 个 MESA modules、10 万余行 Fortran 重写为近 9 万行 Rust,并在六类 workload 上报告 1.55–6.87× median speedup。

这些规模数字很醒目,但仍应等待代码、日志、测试口径的独立审计,尤其要区分 tracked/generated lines、accepted functional code 与第三方/测试资产。

与 wenjun 方向的关系:这是“通过环境设计催生自演化智能”的强案例。对 model-based Code Agent,持久 world state 可定义为 version graph、test state、dependency graph 与 unresolved contracts;Agent 不必把整个历史塞入 context,只需在当前 local world 中规划,并把可验证 consequence 写回全球版本史。


#5. Reward-SNR Floor:看见平均提升,不等于学得会“什么时候该用”

  • 类别Post-training RL / Evaluation / Intent Understanding / Routing
  • 标题Detecting an Effect Is Not Learning to Act on It: A Reward-SNR Floor for LLM Acquisition Agents
  • 来源与日期:arXiv:2608.10441,2026-08-11
  • 一句话核心贡献:区分“昂贵 LLM 辅助信号平均有效”与“可按样本学习何时调用”,提出必要的 reward-SNR 可检测下限 ρ*(N) ≈ 2.8/√N;低于该线时,top-b oracle 的表面收益可能完全由噪声排序造成。

为什么值得关注?

论文以 Structured Hypothesis Embeddings(SHE)为实例:冻结 LLM 从用户历史生成有证据、带置信度的意图假设,再让系统决定哪些样本值得付费获取。虽然该表示本身 faithful、可校准,且在 ordered GRU 上平均有显著收益(+0.0114),但所有 per-example、cluster、regime、uplift-tree routing 都未胜过随机;匹配矩的噪声 placebo 可复现至少 100% 的 oracle apparent gain。

结论不是“意图建模没用”,而是:若 reward effect 的方差远大于可预测均值,当前样本量下就不存在可可靠学习的实例级 acquisition policy。此时能支持的决策粒度可能只是 design-time regime gate

与 wenjun 方向的关系:Agent RL 中的 step credit、tool routing、是否调用 world model/slow planner、何时压缩 context,都应先做 SNR/power audit。否则“oracle 选这些步很赚”可能只是 hindsight noise。尤其是 model-based RL,应分别报告 imagined value 的 bias、variance,以及它是否真的超过可学习下限。


#三、其他值得扫读的新论文与动态

#6. SearchArt:用 evidence graph 合成长程搜索任务,再同时验证答案、轨迹与证据

  • 类别LLM Agent / Tool-use / Pretraining Data / Post-training RL
  • 标题SearchArt: Training Long-Horizon Search Agent with Scalable Synthetic and Verified Task
  • 来源与日期:arXiv:2607.24850v2,2026-08-11 更新
  • 一句话核心贡献:从 web documents 与自动 evidence graphs 合成 deep search/research/user-oriented QA 与 trajectories,用 QA consistency、trajectory quality、evidence relevance 三类验证过滤,再进行 SFT + RL。
  • 结果/判断:SearchArt-27B 报告 BrowseComp-ZH 74.39、BrowseComp 70.06、DeepResearch-Bench 52.55;五个 benchmark 平均 post-training 绝对提升 7.43 点。真正值得学的是“结构化生成难度 + 过程验证”,但全文使用多个闭源/未公开 teacher 生成轨迹,且截至本次核验未找到公开模型或数据资产,不应把 headline 当成可复现结论。

#7. LeWorldModel 独立复现:同一 checkpoint,只改 goal protocol,成功率可从 84% 变 8%

  • 类别Model-based RL / Evaluation / Reproducibility
  • 标题The Evaluation Protocol Determines the Result: An Independent Reproduction of LeWorldModel on TwoRoom
  • 来源与日期:arXiv:2608.10145,2026-08-11
  • 一句话核心贡献:约 25 美元租用算力独立复现 TwoRoom,并找出四个未进入 released config 的关键 convention;作者 checkpoint 在 appendix 与 repo 两种 goal/step 设置下分别为 14% 和 84%,只改变 goal construction 甚至可从 84% 降到 8%。
  • 判断:最重要的负结果是:跨三个 prediction-error 相差 7× 的 checkpoints,one-step error 不能排序 long-horizon planning success;另有 batch norm 让 validation loss 虚高最多 300×。这正支持 Top 2 的观点:world model 必须以闭环 planning 与 protocol robustness 为核心评估。

#8. Test-Time Self-Evolving GUI Grounding:用 reflection-conditioned self-teacher 内化失败经验

  • 类别LLM Agent / On-policy Distillation / Continual Learning / GUI Agent
  • 标题Test-Time Self-Evolving GUI Visual Grounding via Reflection-Guided On-Policy Self-Distillation
  • 来源与日期:arXiv:2608.11191,2026-08-11
  • 一句话核心贡献:闭环执行 Exploration → Evaluation → Reflection → Internalization,把 MLLM reflection 变成 token-level OPSD 信号,并用 Contrastive Calibration 抑制失败前缀造成的 teacher probability 污染。
  • 结果/判断:六个 benchmark 平均较 base 提升 7.4%,Qwen2.5-VL-3B 在 SSv2 上从 50.2% 升到 57.4%。它延续了 OPSD 路线,但 evaluator/reflector 同样可能产生系统性偏差,且代码只承诺未来发布;需用昨日 privileged likelihood 的 AUC、cross-rollout 和 outcome-grounding 检查审计 dense score。

#9. SBCO:不改自己的代码,也可以让 planning harness 低成本自改进

  • 类别Self-evolving Agent / Post-training / Planning / Verifier
  • 标题SBCO: Self-Supervised, Verifier-Grounded Harness Optimization for Planning Agents
  • 来源与日期:arXiv:2608.10157,2026-08-11
  • 一句话核心贡献:固定 meta-agent,通过 approximate block-coordinate ascent 交替学习 decomposed verifier bank 与 harness repair policy,不需要 self-reference 或人工标签。
  • 结果/判断:在 travel/shopping 两域,以 4–5.5× 更少 plan-generation budget 达到或超过定制 self-modifying baseline;86% 的增益来自 F1 ≥ 0.80 的 verifiers。不过主比较遵循 Gödel-machine 基线,选择与报告在同一 benchmark 上,且 policy 仅跑两次估计方差,泛化证据仍有限。

#10. MISA-T:混合 Agent/RLVR/RLHF rollout 的瓶颈是 KV block-time,而非只看 prefix locality

  • 类别Systems / Post-training RL / LLM Agent / KV Cache
  • 标题Scheduling Mixed RL Rollouts Beyond Prefix Locality
  • 来源与日期:arXiv:2608.11152,2026-08-11;基线工程:vLLM Router
  • 一句话核心贡献:MISA-T 用 adaptive session admission、workload-aware protected KV allocation 与 residency-time accounting,在不改变 trainer 目标 mixture 的前提下调度异构 rollout。
  • 结果/判断:rollout-only 在 Step3.7/Qwen3.6-35B-A3B 上相对 sweep-tuned vLLM Router 提升 53.3%/43.6%;50-iteration 端到端 Step3.7 训练中 rollout throughput +35.6%、mean iteration time -22.8%,prefix hit rate 从 74.5% 升至 96.2%。但实验用了 10 个 H200 nodes,工程收益需在常见规模复核。

#11. DataMaster:让 Agent 从自然语言“意图”自动组合 instruction-data selection 策略

  • 类别Pretraining Data / Instruction Tuning / Intent Understanding / Data Curation
  • 标题Agentic Instruction Data Selection: Let DataMaster Interpret Your Intent
  • 来源与日期:arXiv:2608.10579,2026-08-11;代码
  • 一句话核心贡献:用户用自然语言描述目标,DataMaster 自动解释 selection intent,并编排多种数据指标/策略,而不是为每个新数据池手写单一 heuristic。
  • 判断:math、medical、code 域多数设置优于静态选择方法,且相当部分超过 full-pool training。值得关注的是“从指令理解到数据意图编译”的接口;但仓库截至核验仍几乎无社区使用信号,应先审计 selector search space、目标泄漏与算力等价比较。

#12. Personalized Skills for Coding Agents:个性化 skill 不一定比跨用户 generic procedure 更有用

  • 类别Code Agent / Continual Learning / Agent Skills / Evaluation
  • 标题Do Personalized Skills Help Coding Agents? An Empirical Study of Developer Interaction Histories
  • 来源与日期:arXiv:2608.10319,2026-08-11
  • 一句话核心贡献:从 13 位开发者的 206 个真实 developer-agent sessions 提取偏好 skills,并用 trajectory-conditioned developer simulator 对 future tasks 做可复现 replay。
  • 判断:personalized skills 相对 no-skill 只带来小且不稳定的改善;跨开发者汇总的 generic skills 最稳定。个性化只有在偏好反复出现、历史中有多个 future-relevant examples 时才更有效。对持续 Agent 来说,先抽取 transferable procedural knowledge,再决定是否保留 user-specific residue,可能比“全量个人记忆”更稳。

#13. CoinRAG:先切语义 nugget,再组合复用离线 KV

  • 类别Context Compression / RAG / Systems
  • 标题CoinRAG: Contextualized Information Nugget KV Cache Reuse for Long-Context RAG
  • 来源与日期:arXiv:2608.07458,2026-08-07;2026-08-12 进入 Hugging Face Papers
  • 一句话核心贡献:通过两阶段 retrieval 在 retrieved chunks 内选 query-relevant semantic units,切片并组合其离线 KV cache,再配合 chunk-level context,在低 prefill latency 下改善准确率—成本 Pareto frontier。
  • 判断:LongBench multi-hop QA 在标准 fast-prefill budget 下平均 F1 相对提升 5.3%。它比整 chunk KV reuse 更细粒度,但目前仍偏静态 RAG;若用于 Agent,必须处理 observation order、tool-state causality 与 positional/context consistency。

#四、今日最值得精读的 3 篇

  1. Catastrophic Remembering — 最贴近 Code Agent context/memory 的真实维护问题;重点看 instruction lifecycle dataset、hazard analysis、inverted IFEval 与 comment ablations。
  2. Temporal Straightening for Latent Planning — 最贴近 model-based RL + latent-space reasoning;重点看 curvature regularizer、JEPA dynamics、planning objective conditioning 与闭环成功率。
  3. LeWorldModel Independent Reproduction — 给第 2 篇提供必要的反证式评估框架;重点看四个 hidden conventions、goal protocol sensitivity,以及 one-step prediction 与 long-horizon planning 脱钩。

方向备选:若今天更偏 Agent post-training systems,则用 SINKFLEX-RL 替换第 3 篇,并与 MISA-T 联读。


#五、今日最值得跟进的 3 个 repo / model / dataset

  1. agentic-learning-ai-lab/temporal-straightening

跟进理由:官方代码截至核验约 105 stars,8 月 11 日仍更新。可直接检查 curvature loss、planning optimizer 和 task protocol,并测试“低 curvature 是否真的带来远时域收益”。

  1. EMI-Group/genesis

跟进理由:EvoX Genesis 官方实现,截至核验约 12 stars。最值得审计的是 accepted-version gate、recursive delegation、episode archive 与 reported compiler/test artifacts,而不是先看宏大叙事。

  1. tanishqkancharla/calldiff

跟进理由:过去一周新建、截至核验约 356 stars,基于 Tree-sitter 支持 22 种语言,对两个 commit 的 function call stacks 做 diff。它不是论文资产,但很适合成为 Code Agent verifier/state abstraction:比 raw text diff 更接近“这次修改改变了哪些行为路径”。

候补

  • nju-websoft/DataMaster — instruction-data selection 的 intent-to-strategy 实现;
  • vllm-project/router — MISA-T 对比所基于的公开 router,适合复现 mixed rollout serving;
  • Accio-org/BusinessArena — 新发布的端到端长程 business-agent arena,截至核验约 85 stars;可补充 tool-use Agent 的真实闭环评估。

GitHub 社区热点观察:daily trending 中 agent workspace/orchestration 项目仍占显著比例;stablyai/orca 当日约 +1,235 stars,paperclipai/paperclip 约 +571 stars。它们体现并行 coding agents 与组织级 agent management 的工程热度,但不是今天新论文,故不进入研究 Top 3。


#六、研究机会 / Ideas

#Idea 1:Rationale-carrying, lifecycle-aware Agent memory

把 Catastrophic Remembering、CommitKV、SkillZip 合成一套 memory lifecycle:

  • 每条 memory/skill 附带 failure episode、适用 trigger、修复动作、verifier 与 provenance;
  • tool-call commit 前后用局部 intervention 估计即时职责是否完成;
  • 周期性 replay rationale 对应的最小测试集,验证规则是否仍必要;
  • 可由更短的上位 rule 覆盖时进行结构化合并;
  • 删除条件不是“attention 低”或“语义重复”,而是“原失败不再复现、未来风险被其他 contract 覆盖”。

核心问题:能否把 Agent memory compression 变成可验证的 program maintenance,而不是不可审计的 summary?

#Idea 2:Geometry-aware Dreamer for LLM Agents

为语言 Agent 学一个 action-conditioned latent world model,同时优化三类目标:

  1. next-observation / reward / termination prediction;
  2. 同一 skill phase 内的 temporal straightening,使 latent gradient 对 planning 有意义;
  3. 在 tool-mode switch、failure boundary、irreversible commit 处保持必要的曲率和分离度。

评估必须避开 LeWorldModel 陷阱:报告 protocol sweep、goal construction sensitivity、长时域 success,而不是只报告 one-step loss 与 linear probe。可进一步比较 straightening 是否提高 imagined rollout 的 credit ranking AUC。

#Idea 3:先做 Reward-SNR audit,再决定是否训练 step router / model-based critic

对长轨迹 Agent 的每个昂贵决策——调用 slow planner、world model、retrieval、extra verifier、context decompressor——先构造 matched counterfactual,估计 per-step reward effect 的均值、方差与可预测特征:

  • ρ < 2.8/√N,不训练实例级 router,退回 task/regime-level gate;
  • 若超过下限,再比较 environment-grounded credit 与 imagined credit;
  • 用 closed-loop branching 而非静态 replay 验证 action replacement;
  • 将 model uncertainty 转化为 conservative lower bound,而非直接当 advantage。

这可能成为 Agent RL 实验前置的 power analysis,减少大量“oracle 看起来有效、policy 实际学不会”的负收益训练。


#七、建议阅读顺序(约 100 分钟)

  • 0–25 分钟:Catastrophic Remembering 的仓库统计、hazard model 与 comments 实验;
  • 25–50 分钟:Temporal Straightening 的 geometry intuition、regularizer 与 planning results;
  • 50–65 分钟:LeWorldModel 复现中的 hidden conventions 和 protocol sensitivity;
  • 65–80 分钟:SINKFLEX-RL + MISA-T,分别看单 rollout kernel 与混合 serving;
  • 80–100 分钟:Reward-SNR floor 的 oracle/placebo 设计,并思考如何迁移到 Agent credit/routing。

#八、来源索引与限制

  • arXiv 分类 RSS:cs.AI / cs.CL / cs.LG / cs.SE / stat.ML;本次五个 feed 均成功返回 8 月 12 日新批次。
  • Hugging Face Daily Papers:API 于 2026-08-13 08:00(Asia/Shanghai)附近成功返回最新 100 条,最新 submittedOnDailyAt 为 2026-08-12;部分新 arXiv 论文尚无 HF paper page,因此以 arXiv 全文为准。
  • GitHub:Trending 页面及 repository API 可访问;stars/更新时间是本次抓取时快照,不代表论文质量。
  • Google Scholar:本次返回 HTTP 403,未作为证据来源。
  • X/Twitter:搜索 URL 返回 HTTP 200,但页面仅含“JavaScript is not available”式客户端壳,无法稳定抽取并核验帖子/时间戳;因此不编造技术大牛动态,以项目页、论文与 GitHub 更新替代。
  • arXiv API:少量请求成功,随后触发 429/超时;分类 RSS、摘要页与重点论文 PDF 均正常,本文的方法与数字已尽量用全文核验。
  • 所有性能数字均按作者/复现论文报告表述;preliminary run、未发布代码、同 benchmark 选优、闭源 teacher、极小重复次数和大规模硬件等限定均已标注,未将作者 claim 当作独立复现实验。