Instructions to use TencentARC/VideoPainter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TencentARC/VideoPainter with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TencentARC/VideoPainter", torch_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
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
base_model:
|
| 5 |
+
- THUDM/CogVideoX-5b
|
| 6 |
+
- THUDM/CogVideoX-5b-I2V
|
| 7 |
+
- THUDM/CogVideoX1.5-5B
|
| 8 |
+
- THUDM/CogVideoX1.5-5B-I2V
|
| 9 |
+
tags:
|
| 10 |
+
- video
|
| 11 |
+
- video inpainting
|
| 12 |
+
- video editing
|
| 13 |
+
---
|