Instructions to use Video-Reason/VBVR-Wan2.2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Video-Reason/VBVR-Wan2.2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Video-Reason/VBVR-Wan2.2", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,13 @@ pipeline_tag: image-to-video
|
|
| 12 |
<img alt="Project Page" src="https://img.shields.io/badge/Project%20-%20Homepage-4285F4" height="20" />
|
| 13 |
</a>
|
| 14 |
<a href="https://github.com/Video-Reason/VBVR-EvalKit" target="_blank">
|
| 15 |
-
<img alt="Code" src="https://img.shields.io/badge/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
</a>
|
| 17 |
<a href="https://huggingface.co/papers/2602.20159" target="_blank">
|
| 18 |
<img alt="arXiv" src="https://img.shields.io/badge/arXiv-VBVR-red?logo=arxiv" height="20" />
|
|
|
|
| 12 |
<img alt="Project Page" src="https://img.shields.io/badge/Project%20-%20Homepage-4285F4" height="20" />
|
| 13 |
</a>
|
| 14 |
<a href="https://github.com/Video-Reason/VBVR-EvalKit" target="_blank">
|
| 15 |
+
<img alt="Code" src="https://img.shields.io/badge/Evaluation_code-VBVR_Bench-100000?style=flat-square&logo=github&logoColor=white" height="20" />
|
| 16 |
+
</a>
|
| 17 |
+
<a href="https://github.com/Video-Reason/VBVR-Wan2.2" target="_blank">
|
| 18 |
+
<img alt="Code" src="https://img.shields.io/badge/Training_code-VBVR_Wan2.2-100000?style=flat-square&logo=github&logoColor=white" height="20" />
|
| 19 |
+
</a>
|
| 20 |
+
<a href="https://github.com/Video-Reason/VBVR-DataFactory" target="_blank">
|
| 21 |
+
<img alt="Code" src="https://img.shields.io/badge/Data_code-VBVR_DataFactory-100000?style=flat-square&logo=github&logoColor=white" height="20" />
|
| 22 |
</a>
|
| 23 |
<a href="https://huggingface.co/papers/2602.20159" target="_blank">
|
| 24 |
<img alt="arXiv" src="https://img.shields.io/badge/arXiv-VBVR-red?logo=arxiv" height="20" />
|