CoolFace
Modelpublic

stevenlearns/Wan2.2-distilled-models

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes11kdownloads
Model Card

๐ŸŽฌ Wan2.2 Distilled Models

โšก High-Performance Video Generation with 4-Step Inference

Distillation-accelerated version of Wan2.2 - Dramatically faster speed with excellent quality

img_lightx2v


![๐Ÿค— HuggingFace](https://huggingface.co/lightx2v/Wan2.2-Distill-Models) ![GitHub](https://github.com/ModelTC/LightX2V) ![License](LICENSE)


๐Ÿ”ฅ News

  • โ€”2026.04.12: We are excited to release the Wan2.2-I2V-A14B-4step-720p-high and Wan2.2-I2V-A14B-4step-720p-low models. Compared to previous iterations, this version was trained on a high-quality 720p dataset and features an optimized low-noise training algorithm. These enhancements significantly boost the model's performance in fine-grained detail rendering and visual texture.

๐ŸŒŸ What's Special?

<table> <tr> <td width="50%">

โšก Ultra-Fast Generation

  • โ€”4-step inference (vs traditional 50+ steps)
  • โ€”Approximately 2x faster using LightX2V than ComfyUI
  • โ€”Near real-time video generation capability

</td> <td width="50%">

๐ŸŽฏ Flexible Options

  • โ€”Dual noise control: High/Low noise variants
  • โ€”Multiple precision formats (BF16/FP8/INT8)
  • โ€”Full 14B parameter models

</td> </tr> <tr> <td width="50%">

๐Ÿ’พ Memory Efficient

  • โ€”FP8/INT8: ~50% size reduction
  • โ€”CPU offload support
  • โ€”Optimized for consumer GPUs

</td> <td width="50%">

๐Ÿ”ง Easy Integration

  • โ€”Compatible with LightX2V framework
  • โ€”ComfyUI support
  • โ€”Simple configuration files

</td> </tr> </table>


๐Ÿ“ฆ Model Catalog

๐ŸŽฅ Model Types

<table> <tr> <td align="center" width="50%">

๐Ÿ–ผ๏ธ Image-to-Video (I2V) - 14B Parameters

Transform static images into dynamic videos with advanced quality control

  • โ€”๐ŸŽจ High Noise: More creative, diverse outputs
  • โ€”๐ŸŽฏ Low Noise: More faithful to input, stable outputs

</td> <td align="center" width="50%">

๐Ÿ“ Text-to-Video (T2V) - 14B Parameters

Generate videos from text descriptions

  • โ€”๐ŸŽจ High Noise: More creative, diverse outputs
  • โ€”๐ŸŽฏ Low Noise: More stable and controllable outputs
  • โ€”๐Ÿš€ Full 14B parameter model

</td> </tr> </table>

๐ŸŽฏ Precision Versions

PrecisionModel IdentifierModel SizeFrameworkQuality vs Speed
๐Ÿ† BF16lightx2v_4step~28.6 GBLightX2Vโญโญโญโญโญ Highest Quality
โšก FP8scaled_fp8_e4m3_lightx2v_4step~15 GBLightX2Vโญโญโญโญ Excellent Balance
๐ŸŽฏ INT8int8_lightx2v_4step~15 GBLightX2Vโญโญโญโญ Fast & Efficient
๐Ÿ”ท FP8 ComfyUIscaled_fp8_e4m3_lightx2v_4step_comfyui~15 GBComfyUIโญโญโญ ComfyUI Ready

๐Ÿ“ Naming Convention

bash
# Format: wan2.2_{task}_A14b_{noise_level}_{precision}_lightx2v_4step.safetensors

# I2V Examples:
wan2.2_i2v_A14b_high_noise_lightx2v_4step.safetensors                       # I2V High Noise - BF16
wan2.2_i2v_A14b_high_noise_scaled_fp8_e4m3_lightx2v_4step.safetensors      # I2V High Noise - FP8
wan2.2_i2v_A14b_low_noise_int8_lightx2v_4step.safetensors                  # I2V Low Noise - INT8
wan2.2_i2v_A14b_low_noise_scaled_fp8_e4m3_lightx2v_4step_comfyui.safetensors  # I2V Low Noise - FP8 ComfyUI
๐Ÿ’ก Browse All Models: View Full Model Collection โ†’

๐Ÿš€ Usage

Method 1: LightX2V (Recommended โญ)

LightX2V is a high-performance inference framework optimized for these models, approximately 2x faster than ComfyUI with better quantization accuracy. Highly recommended!

Quick Start
  1. 1.Download model (using I2V FP8 as example)
bash
huggingface-cli download lightx2v/Wan2.2-Distill-Models \
    --local-dir ./models/wan2.2_i2v \
    --include "wan2.2_i2v_A14b_high_noise_scaled_fp8_e4m3_lightx2v_4step.safetensors"
bash
huggingface-cli download lightx2v/Wan2.2-Distill-Models \
    --local-dir ./models/wan2.2_i2v \
    --include "wan2.2_i2v_A14b_low_noise_scaled_fp8_e4m3_lightx2v_4step.safetensors"
๐Ÿ’ก Tip: For T2V models, follow the same steps but replace i2v with t2v in the filenames
  1. 1.Clone LightX2V repository
bash
git clone https://github.com/ModelTC/LightX2V.git
cd LightX2V
  1. 1.Install dependencies
bash
pip install -r requirements.txt

Or refer to Quick Start Documentation to use docker

  1. 1.Select and modify configuration file

Choose appropriate configuration based on your GPU memory:

80GB+ GPUs (A100/H100)

24GB+ GPUs (RTX 4090)

  1. 1.Run inference (using I2V) as example)
bash
cd scripts
bash wan22/run_wan22_moe_i2v_distill.sh
๐Ÿ“ Note: Update model paths in the script to point to your Wan2.2 model. Also refer to LightX2V Model Structure Documentation
LightX2V Documentation

Method 2: ComfyUI

Please refer to workflow

โš ๏ธ Important Notes

Other Components: These models only contain DIT weights. Additional components needed at runtime:

  • โ€”T5 text encoder
  • โ€”CLIP vision encoder
  • โ€”VAE encoder/decoder
  • โ€”Tokenizer

Please refer to LightX2V Documentation for instructions on organizing the complete model directory.

๐Ÿค Community

  • โ€”GitHub Issues: https://github.com/ModelTC/LightX2V/issues
  • โ€”HuggingFace: https://huggingface.co/lightx2v/Wan2.2-Distill-Models

If you find this project helpful, please give us a โญ on GitHub

</div>