Page 12 / 28
331 posts in total. Keep on posting.
Showing posts 133–144 of 331. Each entry opens locally on this site; legacy Hexo posts link back to their original article at the bottom for reference.
2026
- 中
DAPO:大规模 LLM 强化学习系统阅读笔记
DAPO 针对 GRPO 的四个具体问题分别提出解法——非对称截断(Clip-Higher)、动态采样、逐 Token 策略梯度损失和软超长惩罚——使 Qwen2.5-32B 在 AIME 2024 上达到 50pct 准确率,所用训练步数比 DeepSeek-R1-Zero 减少一半。
- EN
ACTS: Steering How LLMs Reason, Not Just How Long
ACTS introduces an RL-trained controller agent that steers a frozen reasoning LLM step-by-step through a budget-aware Markov decision process, achieving Vanilla-level accuracy with up to 57 percent token savings and even surpassing full-thinking baselines on harder tasks by eliminating overthinking spirals.
- 中
ACTS:用强化学习训练的控制器,让 LLM 推理更聪明而不只是更短
ACTS 把链式推理的控制建模为预算约束下的马尔可夫决策过程,训练一个轻量控制器 agent 逐步为冻结推理模型分配推理策略,以最多节省 57% token 的代价维持甚至超越原模型精度。
- EN
Moebius: Seamless Runtime Parallelism Switching for MoE LLM Serving
Moebius enables runtime switching between expert parallelism and tensor parallelism for MoE serving, completing each switch in 215-434 ms with only 2.4% memory overhead and achieving 1.16-1.25x speedup on RL rollouts.
- 中
Moebius:为 MoE 大模型推理服务实现无缝运行时并行策略切换
Moebius 允许在 MoE 模型推理服务过程中于专家并行和张量并行之间实时切换,每次切换仅需 215-434 ms、额外内存开销仅 2.4%,RL rollout 速度提升 1.16-1.25 倍。
- EN
JetSpec: Breaking the Scaling Ceiling of Speculative Decoding with Parallel Tree Drafting
JetSpec resolves the causality-efficiency dilemma in speculative decoding by training a causal parallel draft head that generates all nodes of a candidate tree in one forward pass while preserving branch-wise autoregressive conditioning through a tree-causal attention mask — achieving up to 9.64x speedup on MATH-500.
- 中
JetSpec:用并行树草稿突破推测解码的扩展上限
JetSpec 通过训练一个因果并行草稿头,在单次前向传播中生成推测解码候选树的全部节点,同时借助树因果注意力掩码保留分支级因果条件依赖——将 MATH-500 端到端加速比提升至 9.64 倍。
- EN
SigmaScale: Learning to Scale Weight Matrices for Better SVD-Based LLM Compression
SigmaScale learns per-layer row and column scaling vectors to reshape weight-matrix singular-value spectra before truncated SVD, improving compression quality in the mild-to-moderate regime without requiring specialized hardware.
- 中
SigmaScale 阅读笔记:通过学习缩放矩阵改进 SVD 大语言模型压缩
SigmaScale 通过梯度下降学习每层权重矩阵的行列缩放向量,在截断 SVD 之前重塑奇异值谱,从而在温和到中等压缩比下超越基于解析缩放的现有方法,且不依赖任何专用硬件。
- EN
ReMP: Low-Downtime Runtime Model-Parallelism Reconfiguration for LLM Serving
ReMP turns static TP/PP topology into a runtime-adjustable resource, achieving topology switches in 1–7 seconds (100× faster than restart) through shared CPU weight stores, two-dimensional KV cache migration, and pre-built MPU state snapshots — enabling adaptive LLM serving under dynamic workloads.
- 中
ReMP:LLM 推理服务中的低停机运行时并行拓扑重配置
ReMP 将 TP/PP 拓扑从启动时的静态参数变成可在线切换的动态资源,通过 CPU 共享权重存储、二维 KV Cache 迁移和预构建 MPU 状态快照,在 7B 到 70B 参数规模上将拓扑切换时间从分钟级压缩到 1-7 秒,速度提升达 100 倍。
- EN
SparDA: Sparse Decoupled Attention for Efficient Long-Context LLM Inference
SparDA introduces a fourth per-layer Forecast projection that decouples KV block selection from attention computation, enabling lookahead CPU-to-GPU prefetch and a compact GQA-level indexer—delivering up to 1.7x decode speedup and 5.3x throughput over sparse attention baselines on 128K-context inference.