Instructions to use Wan-AI/Wan2.2-I2V-A14B-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Wan-AI/Wan2.2-I2V-A14B-Diffusers 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("Wan-AI/Wan2.2-I2V-A14B-Diffusers", 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") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
#10
by aivideo4k - opened
README.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
|
|
|
| 4 |
- en
|
| 5 |
-
- zh
|
| 6 |
pipeline_tag: image-to-video
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
# Wan2.2
|
| 9 |
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
+
- fa
|
| 5 |
- en
|
|
|
|
| 6 |
pipeline_tag: image-to-video
|
| 7 |
+
base_model:
|
| 8 |
+
- Wan-AI/Wan2.2-I2V-A14B
|
| 9 |
+
- Wan-AI/Wan2.2-I2V-A14B-Diffusers
|
| 10 |
+
library_name: diffusers
|
| 11 |
---
|
| 12 |
# Wan2.2
|
| 13 |
|