Image-to-Video
Diffusers
Safetensors
lora
video-generation
pixel-art
sprite-animation
game-development
wan
comfyui
Instructions to use styly-agents/Wan2-2-pixel-animate with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use styly-agents/Wan2-2-pixel-animate 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-14B-480P", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("styly-agents/Wan2-2-pixel-animate") prompt = "A man with short gray hair plays a red electric guitar." input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png") image = pipe(image=input_image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
Tan commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Wan2.2 Pixel Animate Adapter
|
| 2 |
|
| 3 |
A LoRA adapter for Wan 2.2 I2V (Image-to-Video) model, fine-tuned specifically for generating pixel art sprite animations from static images.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Wan-AI/Wan2.2-I2V-14B-480P
|
| 5 |
+
tags:
|
| 6 |
+
- lora
|
| 7 |
+
- video-generation
|
| 8 |
+
- image-to-video
|
| 9 |
+
- pixel-art
|
| 10 |
+
- sprite-animation
|
| 11 |
+
- game-development
|
| 12 |
+
- wan
|
| 13 |
+
- comfyui
|
| 14 |
+
library_name: diffusers
|
| 15 |
+
pipeline_tag: image-to-video
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
# Wan2.2 Pixel Animate Adapter
|
| 19 |
|
| 20 |
A LoRA adapter for Wan 2.2 I2V (Image-to-Video) model, fine-tuned specifically for generating pixel art sprite animations from static images.
|