知识讲堂

← 返回日报
算法理论 第一讲

一致性蒸馏

扩散模型像一位画家用一百笔慢慢画出一幅画,一致性蒸馏则训练另一位画家反复观摩每一笔后学会"看一眼草稿就一笔画出成品"的直觉。
历史演进

扩散模型虽能生成高质量样本,但需要数百步顺序去噪,无法满足实时交互场景的延迟要求——一致性蒸馏正是为打破这一瓶颈而生。

2020
DDPM 确立扩散范式

Ho、Jain 和 Abbeel 发表 Denoising Diffusion Probabilistic Models,证明扩散模型在图像生成质量上可与 GAN 匹敌。但采样需要 1000 步顺序去噪,每步一次完整的神经网络前向传播,单张图像在 GPU 上需数分钟。这一代价使扩散模型在实时场景中毫无实用性。

2020-2021
DDIM 与概率流 ODE 的发现

Song 等人提出 DDIM,揭示扩散采样过程可被重新解释为求解一条概率流常微分方程(PF-ODE)。这一理论突破使确定性采样成为可能,步数可降至 50-200 步,但低于约 20 步时质量急剧下降。同期 Song 等人(2021)通过随机微分方程(SDE)统一了 score-based 模型与扩散模型,为后续所有加速工作奠定了数学基础——关键洞见是:去噪轨迹是一条连续的 ODE 曲线,而非离散的马尔可夫链。

2022
渐进蒸馏的工程突破

Salimans 和 Ho(Google Brain)提出渐进蒸馏(Progressive Distillation):训练一个学生模型,使其一步的输出匹配教师两步的输出,然后用学生替代教师,重复此过程。步数从 1024 迭代减半至 4。这是首个系统性的扩散加速蒸馏方案,但需要多轮训练且蒸馏误差逐轮累积,4 步以下质量明显衰退。

2023
一致性模型的范式转换

Song、Dhariwal、Chen 和 Sutskever(OpenAI)提出一致性模型(Consistency Models),实现了概念上的飞跃:不再迭代减半步数,而是定义一个"一致性函数",将 ODE 轨迹上的任意点直接映射到轨迹起点(干净样本)。由此诞生两个变体——一致性蒸馏(CD,需预训练教师)和一致性训练(CT,从头训练)。单步即可生成,彻底改变了扩散模型的部署经济学。

2023
潜空间一致性模型

Luo 等人将一致性蒸馏适配到 Stable Diffusion 的潜空间,推出 Latent Consistency Models(LCM),实现 1-4 步高分辨率出图,并以 LCM-LoRA 形式广泛传播,使一致性蒸馏从论文走向了百万级用户的实际产品。

2024
改进的一致性训练

Song 和 Dhariwal 发表 Improved Consistency Training,采用连续时间公式和更优的训练调度,使无教师的 CT 质量首次逼近甚至超越渐进蒸馏,证明一致性学习可以脱离教师模型独立存在。

2025-2026
流式与实时场景扩展

一致性蒸馏被推广到流式因果架构,如本日论文 [38] 将其与 data-free 策略结合用于实时交互音乐生成,以及多个 TTS 系统通过一致性蒸馏实现流式语音合成,标志着该技术从离线生成全面进入实时交互时代。

核心思想
训练网络从扩散ODE轨迹上任意噪声状态直接预测干净输出,将数百步迭代采样压缩为一步或几步,使扩散模型达到实时生成速度。
数学结构

扩散模型定义了一条从干净数据 $x_0$ 到纯噪声 $x_T$ 的概率流ODE:$\frac{dx_t}{dt} = v_\phi(x_t, t)$,其中 $v_\phi$ 是预训练模型学到的速度场。一致性函数 $f_\theta(x_t, t)$ 的核心约束是自一致性:对同一ODE轨迹上的任意两点 $(x_t, t)$ 和 $(x_s, s)$,必须满足 $f_\theta(x_t, t) = f_\theta(x_s, s)$——无论从轨迹哪个位置出发,函数都指向同一终点。边界条件 $f_\theta(x_\epsilon, \epsilon) = x_\epsilon$ 确保在接近干净端时函数退化为恒等映射。为硬性满足边界条件,网络参数化为 $f_\theta(x, t) = c_{\text{skip}}(t) \cdot x + c_{\text{out}}(t) \cdot F_\theta(x, t)$,其中 $c_{\text{skip}}(\epsilon)=1, c_{\text{out}}(\epsilon)=0$,$F_\theta$ 是可学习的骨干网络。蒸馏损失在离散时间调度 $\epsilon = t_1 < t_2 < \cdots < t_N = T$ 上定义:$\mathcal{L}_{\text{CD}} = \mathbb{E}_{n, x_0} \big[ d\big(f_\theta(x_{t_{n+1}}, t_{n+1}),\; f_{\theta^-}(\hat{x}_{t_n}, t_n)\big) \big]$。这里 $\hat{x}_{t_n}$ 由教师模型从 $x_{t_{n+1}}$ 执行一步ODE求解得到(如 Euler 法:$\hat{x}_{t_n} = x_{t_{n+1}} + (t_n - t_{n+1}) \cdot v_\phi(x_{t_{n+1}}, t_{n+1})$),$\theta^-$ 是 $\theta$ 的指数移动平均,$d(\cdot,\cdot)$ 为距离度量。EMA 目标网络是训练稳定性的关键——若两侧同时更新,网络会坍塌到平凡解,这与 MoCo、BYOL 中的设计哲学一脉相承。距离函数的选择直接影响生成质量:图像常用 LPIPS,音频和通用场景中伪 Huber 损失 $d(x,y) = \sqrt{\|x-y\|^2 + c^2} - c$ 更稳定。

工作机制

利用预训练扩散模型作为教师提供ODE轨迹信息,训练学生一致性网络学会从轨迹任意点直接跳到终点,将多步采样压缩为单步。

Step 1准备教师模型与时间调度

使用已训练好的扩散或流匹配模型作为教师,将时间区间 $[\epsilon, T]$ 离散化为 $N$ 个时间点。$N$ 的选择至关重要:太少则相邻时间点间距过大,教师单步ODE估计不准确;太多则训练效率低下。实践中采用课程调度策略(curriculum schedule),从小 $N$(如 10-20)逐步增大到大 $N$(如 120-150),使学生先学习粗粒度的全局一致性,再逐步精化到细粒度。这一设计的深层原因是:小 $N$ 时每步跨度大,学生被迫学习全局结构;大 $N$ 时每步跨度小,学生精修局部细节。

Step 2生成训练对(相邻点配对)

对每个训练样本 $x_0$,先采样随机时间索引 $n$ 和高斯噪声 $\epsilon$,构造噪声样本 $x_{t_{n+1}} = \alpha_{t_{n+1}} x_0 + \sigma_{t_{n+1}} \epsilon$。然后用教师模型的速度场执行一步ODE求解,从 $x_{t_{n+1}}$ 推进到 $\hat{x}_{t_n}$。关键洞见:教师只需走一小步(相邻时间点),精度很高,不会引入显著的离散化误差。这对 $(x_{t_{n+1}}, t_{n+1})$ 和 $(\hat{x}_{t_n}, t_n)$ 位于同一ODE轨迹上,一致性函数对它们的输出应当相同。

Step 3计算一致性损失并更新网络

将 $(x_{t_{n+1}}, t_{n+1})$ 送入在线网络 $f_\theta$ 得到预测 $\hat{y}_1$,将 $(\hat{x}_{t_n}, t_n)$ 送入EMA目标网络 $f_{\theta^-}$ 得到预测 $\hat{y}_2$,计算 $d(\hat{y}_1, \hat{y}_2)$ 作为损失。仅更新在线网络参数 $\theta$,目标网络通过EMA缓慢跟随:$\theta^- \leftarrow \mu \theta^- + (1-\mu)\theta$,$\mu$ 通常为 0.9999。EMA 衰减率 $\mu$ 需随训练进程调整——早期用较小的 $\mu$(如 0.99)使目标网络快速跟上,后期增大以稳定训练。这一"不对称更新"机制是一致性蒸馏区别于普通回归训练的核心设计。

Step 4推理时的单步与多步采样

训练完成后,推理极其简洁:从纯噪声 $x_T \sim \mathcal{N}(0, T^2 I)$ 出发,一次前向传播 $f_\theta(x_T, T)$ 即得生成结果。若需更高质量,可采用多步方案:先用 $f_\theta$ 从 $x_T$ 跳到 $\hat{x}_0$,再向 $\hat{x}_0$ 加噪到中间时间 $t_m$,再用 $f_\theta$ 从 $t_m$ 跳回 $x_0$。每增加一步,质量显著提升,2-4 步通常已接近教师数百步的质量。这种"跳跃-加噪-再跳跃"的采样策略本质上是在利用一致性函数的自纠错能力。# 单步推理 x_T = torch.randn(shape) * T x_0 = consistency_model(x_T, T) # 多步推理(2步示例) x = torch.randn(shape) * T x_0 = consistency_model(x, T) x = x_0 + t_mid * torch.randn_like(x_0) # 重新加噪到中间时刻 x_0 = consistency_model(x, t_mid) # 再次跳跃到终点

Step 5流式因果场景的适配

在实时交互场景中(如 [38] 的交互式音乐生成),一致性蒸馏需与因果架构结合。模型只能看到过去的上下文,且必须在严格的延迟预算(如 10-50ms)内完成单步推理。Data-free 变体进一步消除了对教师在线推理的依赖——通过预计算轨迹数据或使用合成噪声对进行蒸馏,避免训练时每个 batch 都需要教师前向传播的开销。此外,流式场景要求一致性函数在时间维度上也具有因果性:当前帧的生成不能依赖未来帧的信息,这对网络架构(如因果注意力掩码)和时间调度设计提出了额外约束。

长远价值

一致性蒸馏是扩散模型从实验室走向实时产品的关键使能技术。Stable Diffusion 生态中 LCM-LoRA 使 1-4 步出图成为标配,被 Civitai 等平台数百万用户日常使用;OpenAI 的图像和视频生成产品内部采用类似加速策略;语音领域多个 TTS 系统通过一致性蒸馏实现流式合成。它将扩散模型从"质量好但太慢"变为"质量好且够快",是生成式 AI 产品化的核心基础设施,其重要性随实时多模态交互需求的增长只会持续放大。

前沿动向

当前热点:(1) 无教师一致性训练(CT)质量逼近有教师蒸馏(CD),降低对预训练模型的依赖;(2) 向视频、3D、长序列音频等高维空间扩展;(3) 与 RLHF/DPO 结合实现可控单步生成;(4) 流式因果架构下的一致性保证。核心未解问题:单步生成在细节多样性上仍逊于多步采样,如何在不增加步数的前提下提升样本多样性仍是开放挑战。

工程·思维 第二讲

原生推理引擎

历史演进

深度学习框架为训练灵活性而设计的动态图、自动微分和 Python 优先接口,在纯推理场景中变成了沉重的性能包袱——原生推理引擎的诞生正是为了卸掉这些包袱。

2014-2017
框架时代的推理困境

Caffe(2014)、TensorFlow(2015)、PyTorch(2016)确立了现代深度学习框架范式。这些框架的核心设计目标是训练:动态计算图便于调试、自动微分支撑反向传播、Python API 降低研究门槛。但推理时,梯度追踪、算子调度表查找、Python 解释器开销、缓存式内存分配器的碎片化——这些训练必需的机制全部变成了无谓的延迟来源。一个典型的 PyTorch 模型推理调用链是:Python 函数 → torch.dispatch → C++ ATen 算子 → CUDA kernel launch,每个算子承受 10-50 微秒的调度开销。

2017-2020
推理优化编译器的兴起

NVIDIA 推出 TensorRT(2017),Apache TVM(2018)和微软 ONNX Runtime(2019)相继出现。它们的策略是"编译优化":将训练好的模型导出为中间表示,施加算子融合、常量折叠、精度校准等图级优化,再编译为高效的推理引擎。这条路线有效但复杂——导出兼容性问题、版本锁定、调试困难使得部署流程冗长。它们本质上是在框架之上加一层优化,而非从根本上重新思考推理需要什么。

2022-2023
ggml 革命:从框架到运行时

Georgi Gerganov 于 2022 年 11 月发布 whisper.cpp,2023 年 3 月发布 llama.cpp,用约一万行纯 C 代码实现的 ggml 张量库驱动 LLaMA-7B 在 MacBook CPU 上流畅运行——此前被认为不可能。这不是"用 C++ 重写 PyTorch",而是一次根本性的设计哲学转变:推理不需要框架,只需要运行时。ggml 没有自动微分、没有动态图、没有 Python 绑定,它只做一件事——以最小开销执行张量运算。量化类型(Q4_0、Q5_K 等)被设计为一等公民而非后处理步骤,模型权重通过 mmap 直接从磁盘映射到内存,加载时间从分钟级降至秒级。llama.cpp 在发布后数周内获得数万 GitHub star,引发了整个行业对"推理到底需要多重"的反思。

2023-2025
.cpp 生态爆发

whisper.cpp 和 llama.cpp 的成功催生了 stable-diffusion.cpp、bark.cpp、moshi.cpp 等一系列项目。ggml 演进为支持 CUDA、Metal、Vulkan、SYCL 多后端的成熟张量库,GGUF 格式成为模型分发的事实标准。社区证明了一个规律:几乎所有主流模型架构都可以用数千行 C++ 重新实现推理路径,且性能显著优于框架推理。

2026
统一多模型运行时

audio.cpp(本日 [21])代表了下一阶段演进:单个 C++/ggml 运行时统一服务 12 种不同的音频模型(Qwen3-TTS、P

核心思想
工作机制
长远价值
前沿动向

往期讲解档案 123 个知识点

2026年06月28日无分类器引导Classifier-Free GuidanceGuidance ScaleScore Interpolation
2026年06月25日MVDR波束成形MVDR BeamformingSpatial FilteringCovariance Estimation
2026年06月24日神经缩放定律Scaling LawsCompute-Optimal TrainingPower Law
2026年06月23日最小贝叶斯风险解码Minimum Bayes RiskDecision TheoryHypothesis Selection
2026年06月23日PID控制与生成调控PID ControllerFeedback ControlClosed-loop Generation
2026年06月22日生成模型评估度量Frechet Inception DistanceGenerative EvaluationFeature Statistics
2026年06月21日浮点量化收缩偏差FP4 TrainingShrinkage BiasLow-Precision Arithmetic
2026年06月21日模型上线仿真Deployment SimulationShadow TestingOffline Evaluation
2026年06月20日现代联想记忆Hopfield NetworkAssociative MemoryEnergy-Based Model
2026年06月19日离散扩散语言模型Discrete DiffusionAbsorbing StateConcrete Score
2026年06月18日循环变换器架构Looped TransformerWeight TyingAdaptive Computation
2026年06月17日韵律建模演进Prosody PredictionF0 ModelingDuration Prediction
2026年06月16日说话人日志Speaker DiarizationSpeaker EmbeddingEEND
2026年06月15日偏好对齐优化Preference OptimizationDPOReward Modeling
2026年06月14日多令牌并行预测Multi-Token PredictionSpeculative DecodingParallel Decoding
2026年06月13日流匹配生成模型Flow MatchingRectified FlowOptimal Transport Path
2026年06月13日实时管线延迟预算Latency BudgetPipeline OrchestrationTime-to-First-Token
2026年06月12日MoE路由机制Mixture of ExpertsSparse GatingRouter Design
2026年06月11日连续自回归生成Continuous AutoregressiveLatent PredictionAudioVAE
2026年06月10日KV缓存压缩KV Cache CompressionToken EvictionAttention Sparsity
2026年06月09日浏览器端模型推理WebGPUBrowser InferenceClient-side ML
2026年06月02日残差向量量化Residual Vector QuantizationAudio TokenizationNeural Codec
2026年05月31日彩色噪声扩散采样Colored NoiseSpectral BiasSDE Solver
2026年05月31日算子融合编译原理Kernel FusionOperator Fusiontorch.compile
2026年05月20日AI生成内容溯源 (7 chars) ✓Content ProvenanceC2PASynthID
2026年05月19日推理委托设计模式 (8 chars) ✓ Let me now write the full content for both topics. Actually, I realize I should double-check: is "Runtime Abstraction" or "Delegate Pattern" too close to any covered keyword? Looking at the list: Cluster Scheduling, Co-design, Collective Communication, Computational Expressiveness, CUTLASS... No, none of these overlap. OK, let me finalize and write everything out. Let me reconsider the engineering topic one more time. The title "推理委托设计模式" is good but maybe I should make it even more specific and interesting. What about focusing on the "graph partitioning" aspect - how ML runtimes decide which operations to delegate to which backend? This is a more specific and technically interesting angle. No, I think the broader "delegate pattern" is better because it covers the full picture and is more useful to the reader. Let me write it all out now. For the engineering topic, let me think about the history: - Early days: frameworks were monolithic (Caffe, early TensorFlow) - TensorRT (2017): NVIDIA's specialized inference engine, initially standalone - ONNX Runtime (2019): Microsoft introduced "Execution Providers" - the first major delegate-like abstraction - TFLite delegates (2018-2019): TensorFlow Lite introduced delegate API for GPU, NNAPI, etc. - ExecuTorch (2023-2024): PyTorch's answer to edge inference with a clean delegate API - 2025-2026: MLX delegate, Qualcomm AI Engine Direct delegate, etc. This is a rich history. Let me write it up. Actually, I want to make sure I have the dates right: - TensorRT was first released around 2016-2017 - ONNX was announced in 2017 - ONNX Runtime was open-sourced in 2018-2019 - TFLite was released in 2017, delegates came later - ExecuTorch was announced at PyTorch Conference 2023 OK, let me write everything now. I'll be thorough. One more thought: for the MATH section of the engineering topic, I could discuss the graph partitioning problem formally, or I could discuss the cost model for deciding whether to delegate. Let me think... The graph partitioning for delegation can be formalized as: - Given a computation graph $G = (V, E)$ where $V$ is the set of operations and $E$ is data dependencies - And a set of delegates $D = \{d_1, ..., d_m\}$ where each delegate supports a subset of operations $S_i \subseteq V$ - Find a partition $P = \{P_0, P_1, ..., P_m\}$ (where $P_0$ is the fallback/CPU partition) that minimizes total execution time - Subject to: each $
2026年05月17日连续批处理异步化
2026年05月10日连续潜在扩散语言模型Continuous Latent DiffusionNon-autoregressive LMDiffusion Language Model
2026年05月10日零样本跨语言语音克隆Zero-shot Voice CloningCross-lingual TTSIPA Phoneme Representation
2026年05月09日最优传输音频距离Optimal TransportFréchet Audio DistanceRiemannian Metric
2026年05月09日推荐系统推理核内广播优化Intra-kernel BroadcastEmbedding TableRecommendation Inference
2026年05月08日扩散Transformer异常值令牌Outlier TokensDiffusion TransformerAttention Sink
2026年05月08日WebRTC低延迟语音工程WebRTCReal-time AudioJitter Buffer
2026年05月07日音素级深度伪造检测原理Phoneme-level Deepfake DetectionSelf-supervised Speech EmbeddingEmotional Speech Synthesis
2026年05月07日AI训练网络协议工程哲学Multi-path Reliable ConnectionRDMA over EthernetCollective Communication
2026年05月05日对抗解纠缠说话人验证Speaker DisentanglementAdversarial TrainingCross-lingual Verification
2026年05月05日LLM推理为何用语言Chain-of-ThoughtLatent ReasoningToken Space
2026年05月01日跨架构知识蒸馏原理Cross-Architecture DistillationDiffusion LMAutoregressive Teacher
2026年05月01日AI评估计算瓶颈工程LLM Evaluation InfrastructureBenchmark SaturationEval Compute Bottleneck
2026年04月29日平衡传输语音增强Schrödinger BridgeStochastic Differential EquationSpeech Enhancement
2026年04月29日深度学习理论形成Deep Learning TheoryLoss LandscapeNeural Tangent Kernel
2026年04月28日语义进度函数原理Semantic Progress FunctionDiffusion TrajectoryNonlinear Denoising
2026年04月28日大模型OCR选型认知OCR BenchmarkModel Selection BiasCost-Performance Tradeoff
2026年04月27日说话人验证核心原理Speaker Verificationd-vectorECAPA-TDNN
2026年04月27日GPU核函数语言选型GPU Kernel EngineeringCuTe DSLCUTLASS
2026年04月26日时长控制TTS原理Duration ModelingProsody ControlAutoregressive TTS
2026年04月26日AI研究价值评估困境Research EvaluationPublication BiasPeer Review
2026年04月25日全双工对话建模原理Full-Duplex DialogueTurn-TakingVoice Activity Detection
2026年04月25日流式TTS文本规范化Text NormalizationStreaming TTSInverse Text Normalization
2026年04月24日离散扩散语言模型原理Discrete DiffusionMasked Diffusion Language ModelAbsorbing Diffusion
2026年04月24日跟进ML研究的认知工程Information OverloadResearch TriageSpaced Repetition
2026年04月23日一致性正则化ASR原理Consistency RegularizationUnified ASRTransducer
2026年04月23日流式TTS文本规范化工程Text NormalizationStreaming TTSInverse Text Normalization
2026年04月22日神经编码器伪影检测Neural Audio CodecArtifact DetectionForensic Residual
2026年04月22日AI研究复现危机工程Reproducibility CrisisML EngineeringExperimental Rigor
2026年04月21日扩散SNR偏差校正原理Signal-to-Noise RatioDiffusion Timestep BiasScore Matching
2026年04月21日论文复现危机根治工程Reproducibility CrisisAblation StudyExperimental Rigor
2026年04月20日音频时序定位原理Temporal GroundingAudio Event DetectionCross-modal Alignment
2026年04月20日论文复现危机根因Reproducibility CrisisBenchmark OverfittingEvaluation Validity
2026年04月19日流匹配对齐原理Flow Matching AlignmentReward Gradient BackpropagationTrajectory Optimization
2026年04月19日分布式训练任务编排Distributed Training OrchestrationCluster SchedulingFault Tolerance
2026年04月18日最优传输信号融合Optimal TransportWasserstein BarycenterTime-Frequency Resolution
2026年04月18日分布式训练任务调度Distributed Training OrchestrationJob SchedulingCluster Resource Management
2026年04月17日扩散语音识别原理Masked Diffusion Language ModelDiscrete DiffusionASR Decoding
2026年04月17日Mel尺度跨文化偏差Mel ScalePsychoacousticsCultural Bias
2026年04月16日音频水印对抗原理Audio WatermarkingSemi-FragilePsychoacoustic Masking
2026年04月16日推测解码草稿树工程Speculative DecodingDraft TreeBlock Diffusion
2026年04月15日对抗流模型原理Continuous Normalizing FlowAdversarial TrainingFlow Matching
2026年04月15日代理状态可观测性工程Agent ObservabilityDistributed TracingState Machine Debugging
2026年04月14日过程奖励模型原理Process Reward ModelStep-level SupervisionReasoning Chain
2026年04月13日离散令牌音源分离Discrete Token ModelingSource SeparationConditional Generation
2026年04月13日超算API工程哲学Distributed Training OrchestrationSupercomputer API DesignFault Tolerance
2026年04月12日信息瓶颈原理演进Information BottleneckVariational IBDisentanglement
2026年04月12日Safetensors格式工程哲学SafetensorsModel SerializationMemory-Mapped IO
2026年04月11日归一化层演进原理Layer NormalizationRMS NormalizationBatch Normalization
2026年04月11日GEMM自调优后端工程GEMM AutotuningTorchInductorCuteDSL
2026年04月10日多令牌预测原理Multi-Token PredictionSpeculative DecodingMedusa Heads
2026年04月10日ML从业者认知校准Calibration BiasCapability IllusionBenchmark Overfitting
2026年04月09日编码器-解码器LM原理Encoder-Decoder LMCross-Attention ConditioningSequence-to-Sequence
2026年04月09日torch.compile归一化优化torch.compileLayerNormRMSNorm
2026年04月08日KV缓存压缩原理KV Cache CompressionRoPE Position EncodingAttention Score Estimation
2026年04月08日音效基础模型工程Sound Effect GenerationFoundation ModelFoley Synthesis
2026年04月07日可验证奖励强化学习Verifiable RewardRLVRProcess Reward Model
2026年04月07日LLM技能退化认知机制Cognitive OffloadingSkill AtrophyDesirable Difficulty
2026年04月06日音素可解释说话人验证Phoneme-aware Speaker VerificationInterpretable BiometricsLocal Acoustic Evidence
2026年04月06日音频幻觉攻击评估Hallucination AttackAudio Language Model ReliabilityAdversarial Probing
2026年04月05日潜在空间推理原理Latent Space ReasoningContinuous RepresentationToken-Free Inference
2026年04月05日mRNA模型极低成本训练Biology Foundation ModelCross-Species TransferLow-Budget Training
2026年04月04日编码器-解码器TTS原理Encoder-Decoder TTSText ConditioningPositional Capacity
2026年04月04日大模型训练的MXFP8工程MXFP8MicroscalingMixed Precision Training
2026年04月03日在线知识蒸馏原理Online DistillationKnowledge TransferStudent-Teacher
2026年04月03日MoE专家并行调度工程Expert ParallelismMixture of ExpertsAll-to-All Communication
2026年04月02日波形潜空间扩散TTSwaveform latent diffusionnon-autoregressive TTSlatent space acoustic modeling
2026年04月02日波形隐空间扩散原理waveform latent spacediffusion TTSVAE audio codec
2026年04月02日LLM量化权重工程weight quantizationLLM compression4-bit quantization
2026年04月02日扩散语言模型离散生成Discrete DiffusionMasked Diffusion Language ModelNon-autoregressive TTS
2026年04月02日LLM后训练库工程演进RLHF engineeringPPO training stabilityreward hacking
2026年04月02日声学证据瓶颈原理Audio Evidence BottleneckAcoustic GroundingAudio Language Model
2026年04月02日状态空间模型音频建模State Space ModelMambaSelective Scan
2026年04月02日实时语音增强工程选型Real-time Speech EnhancementNoise SuppressionStreaming Inference
2026年04月02日对话上下文压缩原理Context CompressionAbstractive SummarizationCross-Attention Fusion
2026年04月02日说话人匿名化工程Speaker AnonymizationVoice ConversionStreaming Inference
2026年04月02日视听语音识别融合Audio-Visual Speech RecognitionLip ReadingViseme
2026年04月02日GPU训练吞吐加速工程MXFP8MoE TrainingExpert Parallelism
2026年04月01日熵驱动多样性生成diversity samplingtypicality biasrepulsion in latent space
2026年04月01日说话人分割工程选型speaker diarizationbenchmark methodologystreaming ASR pipeline
2026年03月31日转向检测联合建模turn-taking detectionvoice activity detectionjoint acoustic-linguistic modeling
2026年03月31日基准测试的系统性失效benchmark contaminationevaluation validityLLM judge reliability
2026年03月31日扩散模型声学生成diffusion modelscore matchingstochastic differential equation
2026年03月31日TTS开源生态竞争open-weight TTStime-to-first-audiomultilingual speech synthesis
2026年03月30日注意力机制变体演进Multi-Head AttentionGrouped Query AttentionMulti-head Latent Attention
2026年03月30日设备端语音推理架构on-device inferenceExecuTorchvoice agent pipeline
2026年03月29日混合自回归流匹配TTSautoregressive semantic tokensflow matching acoustic decoderhybrid TTS architecture
2026年03月29日NCCL超时诊断方法论NCCL watchdog timeoutdistributed training debuggingcollective communication
2026年03月29日混合架构音频表示Mambastate space modelaudio representation learning
2026年03月29日DeepSeek预训练加速工程MXFP8 trainingexpert parallelismMoE pretraining
2026年03月27日说话人验证度量学习speaker verificationmetric learningcurriculum learning
2026年03月27日MX浮点格式加速训练MXFP8microscalingmixed precision training
2026年03月26日TTS模型极限压缩model compressionknowledge distillationTTS on-device
2026年03月26日小模型极限压缩哲学model compressionknowledge distillationquantization
2026年03月25日流匹配生成原理flow matchingrectified flowODE
2026年03月25日神经音频编解码器neural audio codecresidual vector quantizationEnCodec
2026年03月25日推测解码加速推理speculative decodingdraft modeltoken verification