Helios: The 14B Real-Time Breakthrough in Infinite Video Generation

Helios: Real Real-Time Long Video Generation Model

Summary
Problem
Method
Results
Takeaways
Abstract

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:

  1. Position Shift: The model loses track of time, leading to repetitive or nonsensical motion.
  2. Color Shift: The color distribution deviates over time, leading to "saturated" or "grayed-out" frames.
  3. 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.

Model Architecture

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.

Overhead Reduction

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.

ModelParamsFPSTotal Quality Score
Wan 2.1 14B14B0.336.15
FastVideoWan14B5.375.25
Helios-Distilled14B19.536.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.

Long Video Comparison

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.

Find Similar Papers

Try Our Examples

  • Which recent papers explore hierarchical token compression or sparse attention specifically for DiT-based video generation to achieve real-time inference?
  • How does the "First-Frame Anchor" strategy in Helios compare to "Keyframe-based" anchor mechanisms in earlier autoregressive video models like FreeNoise or FIFO-Diffusion?
  • What are the state-of-the-art methods for "Adversarial Hierarchical Distillation" in temporal domains beyond the DMD framework used in this paper?
Contents
Helios: The 14B Real-Time Breakthrough in Infinite Video Generation
1. Executive Summary
2. The "Drifting" Problem: Why Long Videos Fail
3. Methodology: The Core Architecture
3.1. 1. Unified History Injection & Guidance Attention
3.2. 2. Multi-Term Memory Patchification
3.3. 3. Staged Distillation (Step View)
4. Experiments & Results: Real-Time Performance
5. Deep Insights: Why it Works
6. Final Takeaway