Back to Feed
Multimodal / Computer Vision

Improving Video Generation With Better Latents

Original: VideoRAE: Taming Video Foundation Models for Generative Modeling via Representation Autoencoders

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 2 concepts

Key Takeaways

  • VideoRAE achieves state-of-the-art class-to-video scores on UCF-101 for both autoregressive and diffusion-based generators.
  • The method integrates with existing generative models to improve convergence speed and VBench performance metrics.
  • A custom Representation Alignment module maintains semantic integrity without requiring standard KL regularization constraints.
  • The architecture supports both continuous latents for transformers and discrete latents for autoregressive models via Multi-Codebook SimVQ.

Summary & Methodology Analysis

VideoRAE addresses the inefficiency of conventional 3D-VAEs, which focus on pixel-level reconstruction and create bloated, non-semantic latent spaces that increase the load on downstream generative models. The authors propose using frozen Video Foundation Models (VFMs) like V-JEPA 2 or VideoMAEv2 as feature extractors. These hierarchical features are passed through a lightweight 1D self-attention projector, which computes weighted relationships within the data to compress information into a compact latent space suitable for generative tasks.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the primary problem VideoRAE solves?

It solves the inefficiency of 3D-VAEs that optimize for pixel-level reconstruction, which results in latent spaces that are difficult for downstream generative models to use effectively.

Q2. How does VideoRAE improve the video generation pipeline?

By creating more compact and semantically rich latent representations, it enables faster model convergence and better performance on metrics like VBench.

Q3. Is VideoRAE compatible with different types of video models?

Yes, it supports mapping to continuous representations for Diffusion Transformers or discrete representations for autoregressive models using Multi-Codebook SimVQ.

Q4. What metrics are used to validate the performance?

The paper reports state-of-the-art class-to-video gFVD scores of 40 and 93 on the UCF-101 dataset for AR and DiT generators, respectively.

Q5. What is the function of the Representation Alignment module?

It aligns the decoder features with the frozen VFM teacher to preserve semantic structure, intentionally avoiding the use of KL regularization.

Q6. How does the choice of VFM affect the output quality?

While VideoMAEv2 provides higher pixel-level fidelity, V-JEPA 2 results in better overall generation quality because its latent-space prediction objective aligns more effectively with high-level semantics.

Q7. Does this method work with large-scale text-to-video models?

Yes, in 2B-scale experiments, replacing LTX-VAE with VideoRAE yielded faster convergence and improved VBench performance.

Q8. Does the paper specify the hardware cost or training time?

No, the paper does not specify precise hardware costs or training times.

Q9. What datasets were referenced for evaluation?

The paper uses UCF-101, Kinetics-600, VideoUFO, TokenBench, and VBench.