TL;DR: An efficient video diffusion model that can:
1️⃣ conditionally generate videos based on input text;
2️⃣ unconditionally generate videos with thousands of frames.
- Release pretrained text-to-video generation models and inference code
- Release unconditional video generation models
- Release training code
- Update training and sampling for long video generation
conda create -n lvdm python=3.8.5
conda activate lvdm
pip install -r requirements.txt
Download via linux commands:
mkdir -p models/ae
mkdir -p models/lvdm_short
mkdir -p models/t2v
# sky timelapse
wget -O models/ae/ae_sky.ckpt https://huggingface.co/Yingqing/LVDM/resolve/main/ae/ae_sky.ckpt
wget -O models/lvdm_short/short_sky.ckpt https://huggingface.co/Yingqing/LVDM/resolve/main/lvdm_short/short_sky.ckpt
# taichi
wget -O models/ae/ae_taichi.ckpt https://huggingface.co/Yingqing/LVDM/resolve/main/ae/ae_taichi.ckpt
wget -O models/lvdm_short/short_taichi.ckpt https://huggingface.co/Yingqing/LVDM/resolve/main/lvdm_short/short_taichi.ckpt
# text2video
wget -O models/t2v/model.ckpt https://huggingface.co/Yingqing/LVDM/resolve/main/lvdm_short/t2v.ckpt
Download manually:
- Sky Timelapse: VideoAE, LVDM_short, LVDM_pred, LVDM_interp, dataset
- Taichi: VideoAE, LVDM_short, dataset
- Text2Video: model
- unconditional generation
bash shellscripts/sample_lvdm_short.sh
- text to video generation
bash shellscripts/sample_lvdm_text2video.sh
bash shellscripts/sample_lvdm_long.sh
bash shellscripts/train_lvdm_videoae.sh
- remember to set
PROJ_ROOT
,EXPNAME
,DATADIR
, andCONFIG
.
bash shellscripts/train_lvdm_short.sh
- remember to set
PROJ_ROOT
,EXPNAME
,DATADIR
,AEPATH
andCONFIG
.
# TBD
bash shellscripts/eval_lvdm_short.sh
- remember to set
DATACONFIG
,FAKEPATH
,REALPATH
, andRESDIR
.
AI-generated content has attracted lots of attention recently, but photo-realistic video synthesis is still challenging. Although many attempts using GANs and autoregressive models have been made in this area, the visual quality and length of generated videos are far from satisfactory. Diffusion models have shown remarkable results recently but require significant computational resources. To address this, we introduce lightweight video diffusion models by leveraging a low-dimensional 3D latent space, significantly outperforming previous pixel-space video diffusion models under a limited computational budget. In addition, we propose hierarchical diffusion in the latent space such that longer videos with more than one thousand frames can be produced. To further overcome the performance degradation issue for long video generation, we propose conditional latent perturbation and unconditional guidance that effectively mitigate the accumulated errors during the extension of video length. Extensive experiments on small domain datasets of different categories suggest that our framework generates more realistic and longer videos than previous strong baselines. We additionally provide an extension to large-scale text-to-video generation to demonstrate the superiority of our work. Our code and models will be made publicly available.
@article{he2022lvdm,
title={Latent Video Diffusion Models for High-Fidelity Long Video Generation},
author={Yingqing He and Tianyu Yang and Yong Zhang and Ying Shan and Qifeng Chen},
year={2022},
eprint={2211.13221},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
We built our code partially based on latent diffusion models and TATS. Thanks the authors for sharing their awesome codebases! We aslo adopt Xintao Wang's Real-ESRGAN for upscaling our text-to-video generation results. Thanks for their wonderful work!