Table of Contents
Fetching ...

TPDiff: Temporal Pyramid Video Diffusion Model

Lingmin Ran, Mike Zheng Shou

TL;DR

This work tackles the prohibitive compute cost of video diffusion by introducing TPDiff, a temporal pyramid diffusion framework that progressively increases frame rate across diffusion stages and trains via stage-wise diffusion to share a single model across stages. It formalizes a unified training strategy that solves partitioned probability flow ODEs with data-noise alignment, and demonstrates compatibility with multiple diffusion forms, including DDIM and Flow Matching. Empirical results on a large OpenVID1M-derived dataset show around a 2x reduction in training cost and a 1.5x speedup in inference, with maintained or improved video quality and temporal stability. By exploiting inter-frame redundancy and low-SNR early timesteps, TPDiff delivers scalable, efficient video diffusion suitable for longer sequences and practical deployment.

Abstract

The development of video diffusion models unveils a significant challenge: the substantial computational demands. To mitigate this challenge, we note that the reverse process of diffusion exhibits an inherent entropy-reducing nature. Given the inter-frame redundancy in video modality, maintaining full frame rates in high-entropy stages is unnecessary. Based on this insight, we propose TPDiff, a unified framework to enhance training and inference efficiency. By dividing diffusion into several stages, our framework progressively increases frame rate along the diffusion process with only the last stage operating on full frame rate, thereby optimizing computational efficiency. To train the multi-stage diffusion model, we introduce a dedicated training framework: stage-wise diffusion. By solving the partitioned probability flow ordinary differential equations (ODE) of diffusion under aligned data and noise, our training strategy is applicable to various diffusion forms and further enhances training efficiency. Comprehensive experimental evaluations validate the generality of our method, demonstrating 50% reduction in training cost and 1.5x improvement in inference efficiency.

TPDiff: Temporal Pyramid Video Diffusion Model

TL;DR

This work tackles the prohibitive compute cost of video diffusion by introducing TPDiff, a temporal pyramid diffusion framework that progressively increases frame rate across diffusion stages and trains via stage-wise diffusion to share a single model across stages. It formalizes a unified training strategy that solves partitioned probability flow ODEs with data-noise alignment, and demonstrates compatibility with multiple diffusion forms, including DDIM and Flow Matching. Empirical results on a large OpenVID1M-derived dataset show around a 2x reduction in training cost and a 1.5x speedup in inference, with maintained or improved video quality and temporal stability. By exploiting inter-frame redundancy and low-SNR early timesteps, TPDiff delivers scalable, efficient video diffusion suitable for longer sequences and practical deployment.

Abstract

The development of video diffusion models unveils a significant challenge: the substantial computational demands. To mitigate this challenge, we note that the reverse process of diffusion exhibits an inherent entropy-reducing nature. Given the inter-frame redundancy in video modality, maintaining full frame rates in high-entropy stages is unnecessary. Based on this insight, we propose TPDiff, a unified framework to enhance training and inference efficiency. By dividing diffusion into several stages, our framework progressively increases frame rate along the diffusion process with only the last stage operating on full frame rate, thereby optimizing computational efficiency. To train the multi-stage diffusion model, we introduce a dedicated training framework: stage-wise diffusion. By solving the partitioned probability flow ordinary differential equations (ODE) of diffusion under aligned data and noise, our training strategy is applicable to various diffusion forms and further enhances training efficiency. Comprehensive experimental evaluations validate the generality of our method, demonstrating 50% reduction in training cost and 1.5x improvement in inference efficiency.

Paper Structure

This paper contains 25 sections, 24 equations, 8 figures, 3 tables, 2 algorithms.

Figures (8)

  • Figure 1: Overview of our method. Our method employs progressive frame rates, which utilizes full frame rate only in the final stage as shown in (a) and (b), thereby largely optimizing computational efficiency in both training and inference shown in (c).
  • Figure 2: Methodology. a) Pipeline of temporal pyramid video diffusion model. We divide diffusion process into multiple stages with increasing frame rate. In each stage, new frames are initially temporally interpolated from existing frames. b) Our training strategy: stage-wise diffusion. In vanilla diffusion models, the noise direction along the ODE path points toward the real data distribution. In stage-wise diffusion, the noise direction is oriented to the end point of the current stage.
  • Figure 3: Data-Noise Alignment. For every training sample, (a) vanilla diffusion training randomly samples noises across the entire noise distribution, resulting in stochastic ODE path during training. (b) In contrast, our method samples noises in the closest range, making the ODE path approximately deterministic during training.
  • Figure 4: Qualitative comparison. In each pair of videos, the first row presents the results of models trained using vanilla diffusion and the second row shows the results of our method. The first two video pairs are generated by MiniFlux-vid and the remaining are generated by animatediff.
  • Figure 5: Convergence curve of vanilla diffusion models and our method on (a) DDIM, (b) Flow Matching. We illustrate the FVD of two methods with different GPU hours consumed. Our method achieves higher training efficiency compared to vanilla approachs.
  • ...and 3 more figures