每日练习与编程练习

← 返回日报
任务 第一则

流式同传轨迹调度

任务 92/100

你负责上线一个实时语音到语音翻译系统,音频每 40ms 到达一块,端到端 p95 延迟要求小于 800ms,同时要尽量保证翻译质量、语音自然度和说话人一致性。系统有流式声学编码器、语义翻译解码器和流式声码器;训练阶段有离线平行语料,给定源语音帧长度 N、目标语义 token 长度 M,以及 teacher-forcing 下的前缀代价矩阵 L[i][j] = -log p(y_j^* | x_1:i, y_1:j-1^*)。

请设计一个“显式轨迹监督 + 在线调度”的方法:训练时如何为每个样本构造 READ/WRITE 轨迹标签,推理时如何决定继续读音频还是提交目标 token,如何处理 beam、回滚、延迟预算和 GPU 批处理。要求说明目标函数或 DP 递推、复杂度、关键边界条件,以及你会如何在质量和延迟之间做工程取舍。

参考回答

我会把任务建模为单调在线决策:状态为已消费源帧 i、已提交目标 token j,动作为 READ 或 WRITE。训练阶段先用离线 teacher 构造一条低风险、低延迟的 oracle 轨迹。定义 WRITE 代价为 C_write(i,j)=L[i][j]+λ·delay(i,j)+γ·early_risk(i,j),其中 delay 可用 DAL/AL 的近似,例如 max(0, i - j·N/M - δ),early_risk 可由前缀置信度、强制对齐边界或熵惩罚给出;READ 代价可设为 μικ小等待惩罚或接近延迟上限时的增大惩罚。DP 为 dp[i][j] 表示读到 i、写出 j 个 token 的最小代价:READ 转移 dp[i+1][j] = min(dp[i+1][j], dp[i][j] + C_read(i,j)),WRITE 转移 dp[i][j+1] = min(dp[i][j+1], dp[i][j] + C_write(i,j+1)),边界 dp[0][0]=0,终点 dp[N][M],回溯得到 READ/WRITE 标签。朴素复杂度 O(NM),显存 O(NM) 或滚动数组 O(M);工程上会用离线对齐边界 b_j 把 i 限制在 [b_j-w, b_j+w] 或 wait-k 邻域,降到 O(Mw),否则长音频不可承受。

训练时用多任务损失:轨迹策略头做动作交叉熵,翻译头继续做 teacher-forcing NLL,再加延迟正则和稳定性正则。为了缓解离线 oracle 与在线分布不一致,我会做 scheduled sampling / prefix dropout,让模型见到不完整前缀和自身历史;对不同 λ 训练或蒸馏出多档 latency policy,线上按业务档位切换。

推理时每个流维护状态 (i,j)、encoder cache、decoder KV cache、一个小 beam 和已提交前缀。每来一块音频先更新编码器,然后计算下一 token 分布、动作概率、熵、top1-top2 margin、当前延迟余量。如果 WRITE 置信度足够且不会明显早译,提交 token;如果置信度低且延迟余量充足则 READ;如果接近 800ms 预算则强制 WRITE 或降级到更激进策略。Beam 只允许在未提交窗口内竞争,已提交 token 不改;设置最多 R 个 token 的 tentative rollback 窗口,只有连续 K 个 chunk 保持一致或置信度超过阈值才交给 TTS/vocoder。语音侧用短缓存、overlap-add/cross-fade 避免回滚导致爆音。

复杂度上,单流在线每步主要是一次增量 encoder 和 B 条 beam 的下一 token 计算,约 O(B·V_top) 或用 top-k/采样近似,cache 内存为 O(B·T_dec·d + T_enc·d)。服务端调度会把多个流按 chunk 时间和模型形状做 micro-batch,同时用 earliest-deadline-first 优先处理接近延迟违约的流;对长静音用 VAD 跳过,对过载场景降低 beam、缩短回滚窗口或切更小模型。关键边界包括:长距离语序重排会导致早译错误,需允许等待或输出占位;静音、噪声、口吃会污染轨迹,要做 VAD 和置信度门控;EOS 不能过早提交;源目标长度比例异常时 delay 函数要归一化;网络抖动下要把 chunk 到达时间而非帧编号纳入延迟统计。

回答分析

强答案应先把任务抽象成单调 READ/WRITE 决策,而不是只谈“调阈值”;应给出可优化的目标函数、DP 或近似搜索,并解释为什么能同时控制翻译风险和延迟。还要覆盖训练-推理一致性、beam 与提交稳定性、GPU 在线批处理、p95 延迟而非平均延迟,以及长语序重排、静音、EOS、回滚窗口等边界。常见错误包括:只用固定 wait-k,不讨论不同语种和语速;只优化 BLEU/COMET,不把延迟写进目标;允许无限回滚,导致 TTS 无法落地;忽略 DP 的 O(NM) 成本;忽略线上 batching 对单流延迟的影响。出练习者会继续追问 λ 如何选、oracle 轨迹噪声如何处理、流量过载如何降级、如何证明已提交 token 的稳定性。

评分
92/100
任务定义 18/20正确性 23/25复杂度 18/20工程取舍 19/20表达 14/15
追问
  • 如果目标语存在大规模后置修饰,你如何修改 delay 函数和提交策略?
  • p95 延迟突然恶化但平均延迟不变,你会从哪些指标定位任务?
  • 如果 teacher 轨迹和线上模型偏好冲突,如何做数据闭环和重新蒸馏?
类比
像同声传译员一边听一边说,既不能等整句听完,也不能太早把还没确认的意思说死。
编程练习 第二则

分割回文串

任务 98/100

给你一个字符串 `s`,请你将 `s` 分割成一些 子串,使每个子串都是 回文串 。返回 `s` 所有可能的分割方案。

示例 1:

输入:s = "aab" 输出:[["a","a","b"],["aa","b"]]

示例 2:

输入:s = "a" 输出:[["a"]]

提示:

  • `1
参考解法

参考解法:回溯 + 预处理回文表

核心思路: 1. 先用动态规划预处理 `pal[i][j]`,表示子串 `s[i..j]` 是否为回文。 2. 再从左到右做回溯枚举: - 每次尝试切出一个前缀子串 `s[start..end]` - 只有当它是回文时,才继续递归 3. 当 `start == n` 时,说明已经切完整个字符串,收集当前方案。

这样做的好处是:判断任意子串是否回文的代价从 O(n) 降到 O(1),避免在回溯中重复检查。

python
from typing import List

class Solution:
    def partition(self, s: str) -> List[List[str]]:
        n = len(s)
        # pal[i][j] = True 表示 s[i:j+1] 是回文串
        pal = [[False] * n for _ in range(n)]

        # 预处理回文表
        # 按子串长度从小到大填写
        for i in range(n - 1, -1, -1):
            pal[i][i] = True
            for j in range(i + 1, n):
                if s[i] == s[j] and (j - i == 1 or pal[i + 1][j - 1]):
                    pal[i][j] = True

        res = []
        path = []

        def dfs(start: int) -> None:
            if start == n:
                res.append(path[:])
                return

            for end in range(start, n):
                if pal[start][end]:
                    path.append(s[start:end + 1])
                    dfs(end + 1)
                    path.pop()

        dfs(0)
        return res
解练习分析:

1. 关键思想
- 这练习本质是“枚举所有合法切分方案”。
- 因为要求每一段都是回文,所以每次切分前必须知道某段是否回文。
- 如果直接在回溯里反复判断,会有大量重复计算。
- 所以先用 DP 预处理所有区间回文性,再回溯枚举答案,是最适合现场的主解法。

2. 为什么 `pal[i][j]` 可以这样转移
- 若 `s[i] == s[j]`,并且中间部分 `s[i+1..j-1]` 也是回文,那么 `s[i..j]` 就是回文。
- 边界情况:
  - 长度 1:天然是回文
  - 长度 2:只要两端相等就是回文

3. 复杂度
- 预处理回文表:O(n^2)
- 回溯枚举:输出敏感,最坏情况下方案数非常多,整体复杂度取决于答案规模
- 空间复杂度:
  - 回文表 O(n^2)
  - 递归栈和路径 O(n)

4. 易错点
- 忘记处理长度为 1 和 2 的回文边界
- 回溯时没有 `path.pop()`,导致状态污染
- 切片下标写错,`s[start:end]` 和 `s[start:end+1]` 的区别
- 只做回溯不做预处理,导致重复判断回文超时

5. 出练习者可能追问
- 能否不用 O(n^2) 的表,改成边回溯边判断?可以,但会重复检查,效率更差。
- 能否进一步优化空间?可以考虑按需记忆化回文判断,但本练习 n 很小,O(n^2) 表最清晰稳定。
- 如何证明不会漏解或重解?回溯按“下一段起点”单调推进,每个切分方案唯一对应一条搜索路径,因此不会重复。
- 如果要求输出字典序,怎么改?可以控制遍历顺序,或在最终结果上排序,但一般不建议在搜索中额外复杂化。
解练习分析
评分
98/100
思路 25/25正确性 25/25复杂度 20/20工程性 15/15表达 13/15
追问
  • 如何证明回文DP转移正确
  • 如何减少回溯中的切片开销
  • 如果要统计方案数而不是输出方案怎么做
类比
像在字符串上做“合法切刀游戏”,每一刀都必须切出一段回文。

往期记录 137 条记录

2026年07月24日最大节点价值之和codeGreedyBitManipulationTree
2026年07月23日长音视频工具调度interviewTool RoutingDAG SchedulingSubmodular Maximization
2026年07月20日流式多模态记忆检索interviewStreaming MemoryMultimodal RetrievalTemporal Indexing
2026年07月20日T 秒后青蛙的位置codeTreeDFSProbability
2026年07月20日约束预算模型路由interviewModel RoutingConstrained OptimizationContextual Bandit
2026年07月20日匹配模式数组的子数组数目 IIcodeArrayKMPStringMatching
2026年07月20日受限显存解码调度interviewLLMCompilerKVCacheScheduling
2026年07月20日填充每个节点的下一个右侧节点指针 IIcodeTreeBFSLinkedList
2026年07月02日变分信息瓶颈Information BottleneckVariational BoundRate-Distortion
2026年07月01日CTC序列对齐方法CTCForward-Backward MethodBlank Token
2026年07月01日故障流行病学Core DumpStatistical DebuggingFault Localization
2026年06月30日哈希嵌入压缩Hash EmbeddingFeature HashingEmbedding Compression
2026年06月29日一致性蒸馏Consistency ModelsProgressive DistillationODE Trajectory
2026年06月29日原生推理引擎Native RuntimeggmlInference Engine
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