Update readme to include citation and correct code snippet
Browse files
README.md
CHANGED
@@ -26,7 +26,7 @@ This model is meant for research purposes. Please look at the [model limitations
|
|
26 |
|
27 |
## Use cases
|
28 |
|
29 |
-
This model has a wide range of applications
|
30 |
|
31 |
## Usage
|
32 |
|
@@ -96,7 +96,7 @@ pipe.enable_model_cpu_offload()
|
|
96 |
pipe.enable_vae_slicing()
|
97 |
|
98 |
# generate
|
99 |
-
prompt = Spiderman is surfing. Darth Vader is also surfing and following Spiderman"
|
100 |
video_frames = pipe(prompt, num_inference_steps=25, num_frames=200).frames
|
101 |
|
102 |
# convent to video
|
@@ -130,3 +130,15 @@ The training data includes [LAION5B](https://huggingface.co/datasets/laion/laion
|
|
130 |
|
131 |
_(Part of this model card has been taken from [here](https://huggingface.co/damo-vilab/modelscope-damo-text-to-video-synthesis))_
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
## Use cases
|
28 |
|
29 |
+
This model has a wide range of applications and can reason and generate videos based on arbitrary English text descriptions.
|
30 |
|
31 |
## Usage
|
32 |
|
|
|
96 |
pipe.enable_vae_slicing()
|
97 |
|
98 |
# generate
|
99 |
+
prompt = "Spiderman is surfing. Darth Vader is also surfing and following Spiderman"
|
100 |
video_frames = pipe(prompt, num_inference_steps=25, num_frames=200).frames
|
101 |
|
102 |
# convent to video
|
|
|
130 |
|
131 |
_(Part of this model card has been taken from [here](https://huggingface.co/damo-vilab/modelscope-damo-text-to-video-synthesis))_
|
132 |
|
133 |
+
## Citation
|
134 |
+
|
135 |
+
```
|
136 |
+
@misc{luo2023videofusion,
|
137 |
+
title={VideoFusion: Decomposed Diffusion Models for High-Quality Video Generation},
|
138 |
+
author={Zhengxiong Luo and Dayou Chen and Yingya Zhang and Yan Huang and Liang Wang and Yujun Shen and Deli Zhao and Jingren Zhou and Tieniu Tan},
|
139 |
+
year={2023},
|
140 |
+
eprint={2303.08320},
|
141 |
+
archivePrefix={arXiv},
|
142 |
+
primaryClass={cs.CV}
|
143 |
+
}
|
144 |
+
```
|