Instructions to use weifeng-chen/controlavideo-depth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use weifeng-chen/controlavideo-depth with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("weifeng-chen/controlavideo-depth", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
weifeng commited on
Commit ·
05994d5
1
Parent(s): 4901dc2
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,4 +4,17 @@ license: gpl-3.0
|
|
| 4 |
|
| 5 |
- Depth Control Pretrained model for [control-a-video](https://arxiv.org/abs/2305.13840)
|
| 6 |
- Project page: https://controlavideo.github.io/
|
| 7 |
-
- Code: https://github.com/Weifeng-Chen/control-a-video
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
- Depth Control Pretrained model for [control-a-video](https://arxiv.org/abs/2305.13840)
|
| 6 |
- Project page: https://controlavideo.github.io/
|
| 7 |
+
- Code: https://github.com/Weifeng-Chen/control-a-video
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
# Citation
|
| 11 |
+
```
|
| 12 |
+
@misc{chen2023controlavideo,
|
| 13 |
+
title={Control-A-Video: Controllable Text-to-Video Generation with Diffusion Models},
|
| 14 |
+
author={Weifeng Chen and Jie Wu and Pan Xie and Hefeng Wu and Jiashi Li and Xin Xia and Xuefeng Xiao and Liang Lin},
|
| 15 |
+
year={2023},
|
| 16 |
+
eprint={2305.13840},
|
| 17 |
+
archivePrefix={arXiv},
|
| 18 |
+
primaryClass={cs.CV}
|
| 19 |
+
}
|
| 20 |
+
```
|