Wan2.2: Large-scale video generative models
Open-source diffusion framework for multi-modal video generation.
Learn more about Wan2.2
Wan2.2 is a collection of diffusion-based video generation models designed for various input modalities and output specifications. The architecture incorporates a Mixture-of-Experts approach to separate denoising across timesteps using specialized expert models, and uses a custom VAE with 16x16x4 compression ratios. The framework supports inference on consumer-grade GPUs and has been integrated into Diffusers, ComfyUI, and ModelScope. Common deployments include text-to-video generation, image-to-video synthesis, character animation, and audio-driven video creation.

Mixture-of-Experts architecture
Uses specialized expert models for different denoising timesteps in the diffusion process, increasing model capacity without proportional increases in computational cost during inference.
Multiple model variants
Offers 5B and 14B parameter models supporting different generation tasks (T2V, I2V, TI2V, character animation, audio-driven) with 720P output at 24fps, runnable on consumer GPUs like RTX 4090.
Aesthetic control and motion complexity
Trained on expanded datasets with curated aesthetic labels for lighting, composition, and color tone, plus significantly increased video and image data to improve motion generation and semantic understanding across diverse scenarios.
from wan22.pipeline import Wan2Pipeline
pipeline = Wan2Pipeline.from_pretrained(
"Comfy-Org/wan2.2_ti2v_5B_fp16",
vae="wan2.2_vae",
text_encoder="umt5_xxl"
)
video = pipeline(
prompt="A cinematic shot of waves crashing on a beach at sunset",
num_frames=81,
height=480,
width=832
)
video.save("output.mp4")See how people are using Wan2.2
Top in AI & ML
Related Repositories
Discover similar tools and frameworks used by developers
StabilityMatrix
Multi-backend inference UI manager with embedded dependencies.
pix2pix
Torch implementation for paired image-to-image translation using cGANs.
GFPGAN
PyTorch framework for blind face restoration using StyleGAN2 priors.
Unsloth
Memory-efficient Python library for accelerated LLM training.
Chroma
Vector database for embedding storage and semantic search.
Related Reading
Guides and comparisons from the Greptile content library
Best Developer Productivity Tools in 2026
The best developer productivity tools in 2026, compared by the workflow problem they solve: code review, autocomplete, AI-native editing, terminal agents, code search, observability, and security.
Top AI Code Review Tools for Small Dev Teams 2026
Affordable, lightweight AI code review tools that help small teams catch bugs faster. Practical comparisons of accuracy, ease of use, and value for teams without enterprise budgets.
Best AI Code Review Tools for GitLab
Enterprise-grade AI code review tools for GitLab teams. In-depth comparison of accuracy, security, and integration features to accelerate your merge request workflows.
Choosing the Right Code Review Tool: Better Alternatives to Graphite AI
A breakdown of the best alternatives to Graphite for code reviews. Compare AI tools like Trag, open-source solutions like Gerrit, and database-focused platforms like Visual Expert.