开源大模型技术演进时间线:预训练、后训练与强化学习

基于 36 篇技术报告梳理 2025 下半年到 2026 上半年的开源大模型技术演进:注意力从全局走向混合稀疏、DSA 成为事实标杆、线性注意力在旗舰模型落地、滑动窗口回归与 Mamba 路线,以及 MoE、训练精度与 MTP 的演进趋势。

开源大模型技术演进时间线(2025H2- 2026H1)

基于36篇技术报告整理
三个视角:预训练 / 后训练(SFT) / 强化学习(RL)


一、预训练技术演进

1.1 注意力机制:从标准Attention到混合稀疏

时间模型技术核心思路
2025.05Qwen3GQA + YaRN长上下文标准GQA,通过YaRN做上下文扩展
2025.05Hunyuan-TurboSMamba-Transformer Hybrid首个大规模Mamba+Transformer混合MoE
2025.07Kimi-K2MLA (Multi-head Latent Attention)延续DeepSeek-V3的MLA
2025.09LongCat-FlashMLA + Zero-Computation Experts动态计算预算分配
2025.12DeepSeek-V3.2DSA (DeepSeek Sparse Attention)Lightning Indexer + top-k token selection,O(L²)→O(Lk)
2025.12Nemotron3-WhitepaperHybrid Mamba-Attention + MoEMamba-2为主+少量Attention anchor
2026.01MiMo-V2-FlashHybrid SWA(128)+Global5:1滑动窗口128+learnable attention sink bias
2026.02Qwen3.5GDN (Gated Delta Networks)替代75%注意力层→O(n),KV Cache恒定
2026.02GLM-5DSA集成借鉴DeepSeek Sparse Attention
2026.04DeepSeek-V4OPD (Optimized Proportional-Derivative Attention)MLA升级版
2026.06GLM-5.2DSA + IndexShare每4层共享indexer,FLOPs降2.9×
2026.06LongCat-2.0LSA (LongCat Sparse Attention)SI+CLI+HI三重优化改进DSA
2026.07Kimi-K3Hybrid KDA+Gated MLA3:1KDA(线性注意力)+Gated MLA(全局)交错,+ Attention Residuals
2026.07Gemma4MoE + Hybrid Attention延续Gemma3的sliding window + global
2026.07InklingSWA:Global 5:1 +相对位置编码 + Short Convolutions非RoPE的位置编码,K/V后和残差前加short conv

演进趋势

  1. 从全局Attention → 混合稀疏:几乎所有2026年模型都采用某种形式的稀疏/混合注意力
  2. DSA成为标杆:DeepSeek提出后被GLM-5/5.2、LongCat-2.0等跟进改进
  3. 线性注意力落地:Qwen3.5的GDN和Kimi-K3的KDA标志着线性注意力首次在旗舰模型中实用化
  4. 滑动窗口回归:MiMo-V2-Flash、Inkling等采用极小window(128)反而优于大window
  5. Mamba路线:NVIDIA Nemotron系列坚持Mamba-2+Attention hybrid,Hunyuan-TurboS最早探索

1.2 MoE架构:从标准MoE到LatentMoE

时间模型设计总参/激活专家数/Top-k
2025.05Qwen3标准MoE235B/22B-
2025.07Kimi-K2DeepSeekMoE1T/32Bshared+routed
2025.08GLM-4.5DeepSeekMoE变体-shared+routed
2025.09LongCat-FlashZero-Computation Experts560B/18.6-31.3B动态激活
2025.12Nemotron3-NanoLatentMoE-latent space routed
2026.01MiMo-V2-Flash标准MoE309B/15B256experts/top-8
2026.02Qwen3.5MoE+GDN397B/17B极端稀疏4.3%
2026.04Nemotron3-SuperLatentMoE120B/12B512experts/top-22, latent1024
2026.05MiniMax-M2标准MoE--
2026.06Nemotron3-UltraLatentMoE550B/55B512experts/top-22, latent2048
2026.06LongCat-2.0MoE + N-gram Embedding1.6T/~48B+135B ngram参数
2026.07Kimi-K3StableLatentMoE2.8T/104B896experts/top-16

演进趋势

  1. LatentMoE兴起:NVIDIA首创,Kimi-K3跟进(Stable LatentMoE),在latent space路由,优化accuracy per parameter
  2. 极端稀疏化:Qwen3.5仅4.3%激活率,Kimi-K3 896expert/top-16
  3. 动态计算:LongCat-Flash的Zero-Computation Experts实现token级动态预算
  4. 参数效率新思路:LongCat-2.0的N-gram Embedding在MoE正交维度扩参

1.3 训练精度与效率

时间模型精度规模
2025.05MiMo-7B标准BF1625T tokens
2025.12Nemotron3-NanoNVFP4预训练首次展示
2026.01MiMo-V2-FlashFP8 mixed-precision27T tokens
2026.04Nemotron3-SuperNVFP425T tokens, 120B参数
2026.04DeepSeek-V4FP8预训练32T+ tokens
2026.06Nemotron3-UltraNVFP420T tokens, 550B参数(最大规模NVFP4)

演进趋势:低精度预训练从实验性走向production,NVIDIA系统性推进NVFP4,DeepSeek/小米采用FP8


1.4 Multi-Token Prediction (MTP)

时间模型MTP设计
2025.05MiMo-7BMTP提升性能+加速推理
2025.12Nemotron3系列2层shared-weight MTP for speculative decoding
2026.01MiMo-V2-FlashLightweight MTP (SWA+Dense FFN, 0.33B/block),3层达3.6acceptance
2026.04DeepSeek-V4MTP
2026.06GLM-5.2改进MTP, acceptance length+20%
2026.07Kimi-K3MTP层fine-tune为EAGLE-3draft model (LK loss)

演进趋势:MTP从附加训练目标→推理加速核心组件,Kimi-K3将MTP层直接fine-tune为speculative decoding draft model


1.5 预训练数据规模

时间模型数据量
2025.05MiMo-7B25T
2025.05Qwen336T+
2025.07Kimi-K2未披露
2025.09LongCat-Flash20T+
2026.01MiMo-V2-Flash27T
2026.02Qwen3.5“数万亿”(未精确)
2026.04DeepSeek-V432T+
2026.04Nemotron3-Super25T
2026.06Nemotron3-Ultra20T
2026.06GLM-5.228.5T
2026.06LongCat-2.035T+
2026.07Inkling45T
2026.07Kimi-K3未精确披露

趋势:主流在20-45T区间,数据规模竞赛趋于平台期,重心转向数据质量和配比


二、后训练(SFT)技术演进

2.1 从单阶段SFT到多阶段Cold-Start

时间模型SFT方法
2025.04Seed1.5-ThinkingCold-start: 人工精标少量长CoT → 训练初版 → rejection sampling扩增
2025.05MiMo-7B专门SFT阶段(非详述)
2025.05Qwen3四阶段:Long-CoT Cold Start → ReasoningRL → Thinking Mode Fusion → GeneralRL
2025.06MiMo-VL四阶段预训练含Long-context SFT,直接进入RL
2025.07Kimi-K2SFT作为RL cold-start
2025.09LongCat-Flash-ThinkingMid-training注入reasoning数据 → Reasoning-Oriented SFT
2025.12DeepSeek-V3.2Specialist Distillation:6域专家模型生成蒸馏数据
2026.02GLM-5Cross-Stage Distillation
2026.04Nemotron3-Super两阶段SFT:token-level→sample-level loss
2026.04DeepSeek-V4Specialist Distillation(继承V3.2)
2026.07Kimi-K3XTML格式统一所有agentic轨迹 + QAT从SFT开始

演进趋势

  1. Cold-Start成为标配:几乎所有reasoning model都用少量高质量CoT数据做cold-start
  2. Specialist Distillation兴起:DeepSeek首创,用domain-specialized expert模型生成蒸馏数据
  3. Mid-training注入reasoning数据:LongCat-Flash-Thinking、MiMo-VL发现预训练阶段即引入CoT reasoning data效果显著优于仅post-training
  4. Loss设计创新:Nemotron的token-level→sample-level两阶段解决长output主导问题

2.2 从通用SFT到Agentic SFT

时间模型Agentic SFT设计
2025.07Kimi-K2Agent任务SFT数据
2025.12DeepSeek-V3.26域specialist含Agentic Coding和Agentic Search
2026.04Nemotron3-SuperAgentic CLI dataset(15K+3K SWE+10K web dev),录制real交互轨迹
2026.06Nemotron3-Ultra大规模agentic SFT(math proof+science web-search traces+multi-turn chat+CUDA+financial)
2026.07Kimi-K3XTML序列化所有复杂agentic轨迹,合成+human-in-the-loop

趋势:Agent SFT数据从简单tool-call演进到完整multi-step轨迹录制+环境交互+XTML结构化


三、强化学习(RL)技术演进

3.1 RL算法演进

时间模型算法关键创新
2025.04Seed1.5-ThinkingVAPO + DAPOActor-critic SOTA(VAPO) + Policy-gradient无critic SOTA(DAPO)
2025.05MiMo-7BGRPO去KL Loss + Dynamic Sampling + Clip-Higher
2025.05Qwen3GRPO标准GRPO
2025.06MiniMax-M1CISPOClip-Importance-Sampling Policy Optimization
2025.07Kimi-K2同步RL + partial rollout继承K1.5
2025.08InternVL3.5Cascade RL (MPO→GSPO)Offline RL stable convergence → Online RL refined alignment
2025.12DeepSeek-V3.2Scaled GRPOUnbiased KL Estimate + per-domain β
2026.02GLM-5Async RL + Cross-Stage Distillation异步训练加速
2026.04Nemotron3-SuperMulti-roundRLVR(3轮) + RLHF + SWE-RL37环境类型×4000实例/batch
2026.05MiniMax-M2Self-Evolution RLVRForge系统
2026.06Nemotron3-UltraRLVR + MOPDMulti-teacher on-policy distillation
2026.07Kimi-K33域×3effortRL → MOPD9个expert→单一模型
2026.07Inkling异步RL, 30M+ rolloutsControllable Thinking Effort

演进趋势

  1. GRPO成为主流起点:几乎所有模型以GRPO/其变体为基础
  2. VAPO/DAPO引领稳定性:Seed团队贡献的两个框架被广泛参考
  3. Cascade/Multi-stage RL:InternVL3.5的Offline→Online,逐步成为共识
  4. 异步RL规模化:GLM-5、Kimi-K3、LongCat-Flash-Thinking(DORA)、Inkling均采用异步架构
  5. MOPD(多教师蒸馏)兴起:Nemotron3-Ultra、Kimi-K3、MiMo-V2-Flash三家同期独立提出

3.2 Reward设计演进

时间模型Reward设计
2025.04Seed1.5-ThinkingSeed-Verifier(82.7%) → Seed-Thinking-Verifier(99.3%,带reasoning path)
2025.05MiMo-7BTest Difficulty Driven Reward(按test case难度分档给分)
2025.05Qwen3Rule-based verifier
2025.06MiMo-VLMORL: rule-based + Bradley-Terry RM统一框架
2025.08GLM-4.5Rule-based + Generative RM
2025.12DeepSeek-V3.2Rule-based outcome + length penalty + language consistency + generative RM(per-prompt rubrics)
2026.04Nemotron3-SuperMulti-environment verifiable rewards (37种)
2026.06Nemotron3-UltraMOPD: teacher提供dense token-level reward
2026.07Kimi-K3MOPD: per-token OPD reward (clip到[-R_max, R_max])
2026.07InklingProper scoring rules + Claims评分器(agent web-search验证) +弃权感知reward

演进趋势

  1. Verifier精度提升:从rule-based → LLM-as-judge → Thinking-Verifier(带reasoning)
  2. Dense reward兴起:从sparse outcome reward → MOPD的token-level dense reward
  3. 混合reward:verifiable(rule-based) + non-verifiable(RM) 统一框架成为标配
  4. 认识论reward:Inkling的弃权感知和Claims验证代表新方向

3.3MOPD (Multi-Teacher On-Policy Distillation) 的崛起

这是2026上半年最重要的RL范式创新,三家几乎同时独立提出:

时间模型MOPD具体实现
2026.01MiMo-V2-FlashDomain teachers提供dense token-level reward + verifiable outcome reward
2026.06Nemotron3-Ultra多specialized teacher对student rollout做token-level评分;sampled-token objective优于logit matching
2026.07Kimi-K39个(3域×3effort)expert teacher → per-token OPD reward → 单一fused model

共同思路:训练多个domain-specialized expert → student生成rollout → teacher对rollout提供dense supervision → student学习

局限性(Nemotron分析):对self-contained reasoning效果有限,因teacher优势来自off-policy数据exposure而非trajectory preference


3.4 Domain-ParallelRL

时间模型实现
2025.09LongCat-Flash-ThinkingSTEM/Code/Agentic独立RL → fusion → General RL
2026.07Kimi-K3General/GeneralAgent/CodingAgent × low/high/max → 9 expert → MOPD

趋势:多域RL从混合训练(不稳定)→ 域并行训练+后融合(稳定+近Pareto-optimal)


3.5 RL Infra演进

时间模型Infra关键特点
2025.04Seed1.5-ThinkingDecoupled streaming rollout异步partial trajectory, 3×加速
2025.05MiMo-7Bverl + Seamless Rollout EngineContinuous Rollout + Async Reward + Early Termination, 2.29×加速
2025.06MiMo-VLverl-based, single+multi controllerRL60K GPU hours
2025.09LongCat-Flash-ThinkingDORA>3×加速,万卡级异步RL
2026.02GLM-5Slime (Async RL)自研异步RL基础设施
2026.04Nemotron3-SuperLarge-scale async RL千GPU级,21+环境,resiliency优化
2026.07Kimi-K3Co-located RL + External KV Cache Pool + AgentENV1M上下文RL, microVM sandbox

演进趋势

  1. 异步成为标配:同步RL已被淘汰,所有新模型采用某种异步架构
  2. Long-horizon RL基建:Kimi-K3的1M上下文RL(External KV Cache+auto-throttling)、Nemotron的SWE-RL(20B tokens)
  3. Sandbox进化:Kimi-K3的AgentENV(microVM, 133ms checkpoint/49ms resume)代表AgentRL环境最新水平
  4. Rollout加速:MTP加速rollout(MiMo-V2-Flash、Nemotron)成为RL scaling的关键enabler

四、总结:三大方向的交汇趋势

2025下半年的主题

  • 预训练:DSA/混合注意力确立、MoE规模化、数据量冲向20T+

  • 后训练:Cold-start + Specialist Distillation成型

  • RL:GRPO/VAPO为基础、rule-based verifier为主、同步→异步过渡

    2026上半年的主题

  • 预训练:线性注意力实用化(GDN/KDA)、LatentMoE、低精度训练production化、1M上下文

  • 后训练:Mid-training引入reasoning data、Agentic trajectory SFT、QAT从SFT开始

  • RL:MOPD范式爆发、Domain-Parallel RL、million-token Agentic RL、3000万+rollouts规模


核心判断与未来展望

传统的”预训练→SFT→RL”三阶段泾渭分明的pipeline正在坍缩:

  • 上游:MiMo-VL和LongCat-Flash-Thinking证明了在预训练Stage3就引入long CoT reasoning data比仅post-training效果好得多。Kimi-K3从SFT第一步就做QAT,将部署考量提前到训练全程。
  • 中游:Specialist Distillation(DeepSeek)和MOPD(Nemotron/Kimi/MiMo)模糊了SFT和RL的边界——teacher本身是RL产物,student的学习信号既不是纯SFT也不是纯RL。
  • 下游:Nemotron3-Ultra的MTP Boosting在RL之后用KL distillation修复推理加速能力,形成”RL→distillation”的反向流。

推测:未来可能出现”unified training”范式,即数据quality/diversity调度和reward signal贯穿训练全程,而非人为划分阶段。

三家同时提出MOPD说明这是当前scaling的核心瓶颈:单个模型难以在所有domain同时达到Pareto前沿。但Nemotron的分析也指出了局限:

  • MOPD对”student已经能sample到的trajectory空间”有效(agentic任务)
  • 对”需要全新reasoning path”的能力无效(HLE等self-contained reasoning)

推测:下一步可能需要”MOPD +能力注入”的组合——先用额外SFT/RL让student能覆盖teacher的trajectory空间,再做MOPD。或者探索更强的offline distillation方法(如trajectory-level而非token-level)。

当前三条路线并存(线性/稀疏/滑动窗口),但它们适配不同workload:

路线适配场景代表
线性注意力 (GDN/KDA)超长序列生成、高并发servingQwen3.5, Kimi-K3
稀疏注意力 (DSA/LSA)长上下文理解+精确检索DeepSeek, GLM-5.2, LongCat-2.0
滑动窗口+sink推理延迟敏感、端侧部署MiMo-V2-Flash, Inkling

推测:未来可能出现”workload-aware动态切换”——同一模型在不同层/不同上下文长度使用不同注意力策略。Kimi-K3的KDA(3):MLA(1)已是初步形态,但比例固定;更进一步是让router动态选择。

从36篇报告看,RL算法趋于收敛(GRPO/VAPO变体够用),但环境质量和多样性成为决定性因素:

  • Kimi-K3投入大量工程构建mock applications(Gmail/Notion/Slack),单rollout达thousands of tool calls
  • Nemotron3-Super跨37种环境类型、4000实例/batch
  • DeepSeek-V3.2合成8.5万agentic任务,frontier模型只有62%正确率

推测:RL环境的”生态位”会成为下一阶段竞争焦点。谁能构建更真实、更可验证、更多样的环境(特别是长程、多步、有状态的),谁的Agent就更强。环境的构建方法论(合成 vs 真实录制 vs 混合)也会成为独立的研究方向。

MTP不再仅是”推理加速trick”,而是训练系统的核心组件:

  • MTP加速RL rollout → 更多rollouts/单位时间 → RL能scale更远
  • MTP层可fine-tune为draft model → 免去额外训练draft model的成本
  • NVFP4/FP8不仅省训练成本,还直接用于推理部署(Kimi-K3全程QAT消除train-inference mismatch)

推测:训练和推理的co-design会加深。未来可能出现”为speculative decoding而设计的预训练目标”,或者”为RL rollout效率而设计的模型架构”。MiMo-V2-Flash的Lightweight MTP(0.33B/block)已是这一方向的先驱。

从报告中反复出现的pattern:

  • MiMo-7B(7B)通过数据质量和配比超越32B模型
  • Qwen3.5-9B凭推理数据超越120B模型
  • Seed1.5-Thinking发现math data的跨域泛化能力极强

推测:数据工程(质量过滤、合成、配比、课程学习)的ROI远高于简单扩参数。但当前报告普遍对数据recipe披露最少(商业敏感)。这是开源社区最大的information gap,也是后来者弯道超车的主要机会。

Kimi-K3展示了完整的million-token Agentic RL技术栈(External KV Cache Pool + auto-throttling + AgentENV microVM + 133ms checkpoint),这是一个engineering complexity极高的系统。

推测:能做到stable million-token RL training的团队屈指可数。这不是算法问题而是系统工程问题(KV cache管理、sandbox状态persistence、partial rollout调度、fault tolerance)。这将成为Agent模型竞争中最硬的基础设施门槛。

本文结束 感谢您的阅读