Instructions to use DROWHOODIS/vidgen with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use DROWHOODIS/vidgen with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("DROWHOODIS/vidgen", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,4 +13,11 @@ datasets:
|
|
| 13 |
- argilla/FinePersonas-v0.1
|
| 14 |
base_model:
|
| 15 |
- tencent/HunyuanVideo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
---
|
|
|
|
| 13 |
- argilla/FinePersonas-v0.1
|
| 14 |
base_model:
|
| 15 |
- tencent/HunyuanVideo
|
| 16 |
+
language:
|
| 17 |
+
- en
|
| 18 |
+
metrics:
|
| 19 |
+
- accuracy
|
| 20 |
+
new_version: tencent/HunyuanVideo
|
| 21 |
+
pipeline_tag: text-to-video
|
| 22 |
+
library_name: diffusers
|
| 23 |
---
|