Paper
Hugging Face
A study spanning 2,400+ training runs shows layer dropout, largely abandoned in modern LLM pretraining, cuts training FLOPs by up to 25% and enables up to 1.5x inference speedups via early exit.
Training FLOPs saved up to 25%Inference speedup up to 1.5xTraining experiments 2,400+
Why it matters
- Challenges the current default of skipping dropout at scale, backed by unusually large-scale evidence (271M to 8.2B parameters, up to 160B tokens).
- Practical FLOP savings during training plus free inference-time optimizations make this a low-risk change for teams pretraining their own models.
Paper
Hugging Face
Group Adaptive Clipping Policy Optimization adapts the RL clipping boundary to rollout advantage, recovering exploration signal from hard problems that fixed clipping was suppressing.
Why it matters
- Plug-in fix to GRPO-style RLVR pipelines that requires no reward reshaping, easing adoption.
- Consistently improves Pass@1 and Pass@k on math and coding benchmarks where base pass rates are low, exactly where exploration matters most.
Paper
Hugging Face
RISE builds a synthetic distillation teacher by extrapolating a model's own RLVR training trajectory, turning on-policy distillation into a recursive improvement loop rather than a one-shot step.
Why it matters
- Removes the need for an external teacher model, addressing a known distribution-mismatch bottleneck in on-policy distillation.
- Outperforms RLVR-only and self-distillation baselines across math, STEM, code, and multi-turn agentic tasks.
Paper
Hugging Face
ShallowStream uses only shallow MLLM layers to index streaming video frames, cutting per-frame prefill latency and end-to-end latency by up to 52x and 11.9x while matching top streaming-video methods.
Per-frame prefill speedup up to 52.1xEnd-to-end latency speedup up to 11.9x
Why it matters
- Addresses a real deployment bottleneck (full-depth prefill cost) for streaming video applications like robotics and surveillance.
- Large latency gains without falling behind on accuracy make this immediately relevant for latency-constrained multimodal deployments.