Helios: The 14B Real-Time Breakthrough in Infinite Video Generation
Helios: Real Real-Time Long Video Generation Model
Helios is a 14B autoregressive video diffusion model achieving a landmark 19.5 FPS on a single NVIDIA H100. It supports minute-scale video generation through a unified framework for T2V, I2V, and V2V tasks, matching the quality of massive base models while operating at real-time speeds.
In the rapidly evolving landscape of generative AI, video generation has long been the "expensive" frontier. While image generation moved to sub-second speeds months ago, high-quality video (especially at the 14B parameter scale) remained trapped in a cycle of multi-minute render times. Helios, a collaborative effort from Peking University and ByteDance, has officially shattered this bottleneck.
Executive Summary
Helios is the first 14B video diffusion model to achieve 19.5 FPS on a single H100 GPU. It isn't just fast; it is "infinite," capable of generating minute-scale videos with temporal consistency that rivals (and often exceeds) massive base models. By rethinking how history is injected and how tokens are compressed, the authors have created a model that is 128x faster than traditional pipelines without the "drifting" artifacts that plague autoregressive systems.
The "Drifting" Problem: Why Long Videos Fail
Generating a 5-second clip is easy; generating 5 minutes is nearly impossible for most models. The failure usually manifests in three ways:
- Position Shift: The model loses track of time, leading to repetitive or nonsensical motion.
- Color Shift: The color distribution deviates over time, leading to "saturated" or "grayed-out" frames.
- Restoration Shift: Artifacts like blur or noise accumulate until the video becomes unrecognizable.
Prior works tried to solve this with Self-Forcing (simulating inference during training), but this is computationally ruinous for 14B models.
Methodology: The Core Architecture
Helios transforms a bidirectional model into an autoregressive generator through a three-pronged strategy:
1. Unified History Injection & Guidance Attention
Unlike standard causal masking which restricts information flow, Helios uses Guidance Attention. It treats historical context as a "clean" reference (fixed at ) that guides the denoising of the noisy current context. This allows the model to "anchor" its generation to previous frames without losing the expressive power of bidirectional pre-training.

2. Multi-Term Memory Patchification
To keep the 14B model fast, Helios employs a "hierarchical" view of memory. It partitions history into short, mid, and long-term segments. The further back the history, the more it is compressed (using larger convolution kernels). This ensures the total token count stays constant, preventing Out-of-Memory (OOM) errors even as the video grows to thousands of frames.

3. Staged Distillation (Step View)
The model uses Adversarial Hierarchical Distillation. By distilling the 50-step teacher into a 3-step student using a GAN-based objective, Helios achieves real-time speeds. Crucially, it uses an autoregressive teacher, which helps the student learn how to handle its own generated history more effectively than previous methods.
Experiments & Results: Real-Time Performance
The quantitative results are staggering. Helios matches the quality of models like Wan 2.1 14B while being over 50x faster.
| Model | Params | FPS | Total Quality Score |
|---|---|---|---|
| Wan 2.1 14B | 14B | 0.33 | 6.15 |
| FastVideoWan | 14B | 5.37 | 5.25 |
| Helios-Distilled | 14B | 19.53 | 6.00 |
In the newly proposed HeliosBench, Helios demonstrates a remarkable ability to suppress drifting. By using a First-Frame Anchor, the model retains the "identity" of the scene throughout 1440 frames, avoiding the "color wash" typical of autoregressive extrapolation.

Deep Insights: Why it Works
The secret sauce is the combination of Relative RoPE and Frame-Aware Corrupt.
- Relative RoPE ensures the model never sees "sequence lengths" it wasn't trained on, preventing the motion from "snapping back" or resetting.
- Frame-Aware Corrupt forces the model to learn to "correct" its own imperfect history during training, effectively acting as a built-in error stabilizer.
Final Takeaway
Helios is more than just an efficient video generator; it is a proof-of-concept for interactive world models. Its ability to handle prompt interpolation and zero-shot V2V tasks at 20 FPS makes it a prime candidate for future game engines and real-time AI simulators. While boundaries between sections can still show occasional flickering (a common AR trait), the leaps in efficiency and stability set a new standard for the industry.
