Views
No views yet

⚡ Flexible Deployment
|
🎯 Dual Noise Control
|
💾 Storage Efficient
|
🚀 4-Step Inference
|
| Task Type | Noise Level | Model File | Rank | Purpose |
|---|---|---|---|---|
| I2V | High Noise | wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors | 64 | More creative image-to-video |
| I2V | Low Noise | wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors | 64 | More stable image-to-video |
💡 Note:
xxxin filenames represents version number or timestamp, please check HuggingFace repository for the latest version- These LoRAs must be used with Wan2.2 base models
1# Download high noise base model
2huggingface-cli download lightx2v/Wan2.2-Official-Models \
3 wan2.2_i2v_A14b_high_noise_lightx2v.safetensors \
4 --local-dir ./models/Wan2.2-Official-Models
5
6# Download low noise base model
7huggingface-cli download lightx2v/Wan2.2-Official-Models \
8 wan2.2_i2v_A14b_low_noise_lightx2v.safetensors \
9 --local-dir ./models/Wan2.2-Official-Models1huggingface-cli download Wan-AI/Wan2.2-I2V-A14B \
2 --local-dir ./models/Wan2.2-I2V-A14B💡 Note: lightx2v/Wan2.2-Official-Models provides separate high noise and low noise base models, download as needed
1# Download both LoRAs (high noise and low noise)
2# Note: xxx represents version number, please check HuggingFace for actual filename
3huggingface-cli download lightx2v/Wan2.2-Distill-Loras \
4 wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
5 wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
6 --local-dir ./loras/1cd LightX2V/tools/convert
2
3# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/high_noise_model/
4python converter.py \
5 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_high_noise_lightx2v.safetensors \
6 --output /path/to/output/ \
7 --output_ext .safetensors \
8 --output_name wan2.2_i2v_A14b_high_noise_lightx2v_4step \
9 --model_type wan_dit \
10 --lora_path /path/to/loras/wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
11 --lora_strength 1.0 \
12 --single_file
13
14# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/low_noise_model/
15python converter.py \
16 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_low_noise_lightx2v.safetensors \
17 --output /path/to/output/ \
18 --output_ext .safetensors \
19 --output_name wan2.2_i2v_A14b_low_noise_lightx2v_4step \
20 --model_type wan_dit \
21 --lora_path /path/to/loras/wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
22 --lora_strength 1.0 \
23 --single_file1cd LightX2V/tools/convert
2
3# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/high_noise_model/
4python converter.py \
5 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_high_noise_lightx2v.safetensors \
6 --output /path/to/output/ \
7 --output_ext .safetensors \
8 --output_name wan2.2_i2v_A14b_high_noise_scaled_fp8_e4m3_lightx2v_4step \
9 --model_type wan_dit \
10 --lora_path /path/to/loras/wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
11 --lora_strength 1.0 \
12 --quantized \
13 --linear_dtype torch.float8_e4m3fn \
14 --non_linear_dtype torch.bfloat16 \
15 --single_file
16
17# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/low_noise_model/
18python converter.py \
19 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_low_noise_lightx2v.safetensors \
20 --output /path/to/output/ \
21 --output_ext .safetensors \
22 --output_name wan2.2_i2v_A14b_low_noise_scaled_fp8_e4m3_lightx2v_4step \
23 --model_type wan_dit \
24 --lora_path /path/to/loras/wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
25 --lora_strength 1.0 \
26 --quantized \
27 --linear_dtype torch.float8_e4m3fn \
28 --non_linear_dtype torch.bfloat16 \
29 --single_file1cd LightX2V/tools/convert
2
3# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/high_noise_model/
4python converter.py \
5 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_high_noise_lightx2v.safetensors \
6 --output /path/to/output/ \
7 --output_ext .safetensors \
8 --output_name wan2.2_i2v_A14b_high_noise_scaled_fp8_e4m3_lightx2v_4step_comfyui \
9 --model_type wan_dit \
10 --lora_path /path/to/loras/wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
11 --lora_strength 1.0 \
12 --quantized \
13 --linear_dtype torch.float8_e4m3fn \
14 --non_linear_dtype torch.bfloat16 \
15 --single_file \
16 --comfyui_mode
17
18# For directory-based base model: --source /path/to/Wan2.2-I2V-A14B/low_noise_model/
19python converter.py \
20 --source ./models/Wan2.2-Official-Models/wan2.2_i2v_A14b_low_noise_lightx2v.safetensors \
21 --output /path/to/output/ \
22 --output_ext .safetensors \
23 --output_name wan2.2_i2v_A14b_low_noise_scaled_fp8_e4m3_lightx2v_4step_comfyui \
24 --model_type wan_dit \
25 --lora_path /path/to/loras/wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
26 --lora_strength 1.0 \
27 --quantized \
28 --linear_dtype torch.float8_e4m3fn \
29 --non_linear_dtype torch.bfloat16 \
30 --single_file \
31 --comfyui_mode📝 Reference Documentation: For more merging options, see LightX2V Model Conversion Documentation
1# Download both LoRAs (high noise and low noise)
2# Note: xxx represents version number, please check HuggingFace for actual filename
3huggingface-cli download lightx2v/Wan2.2-Distill-Loras \
4 wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
5 wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors \
6 --local-dir ./loras/1{
2 "lora_configs": [
3 {
4 "name": "high_noise_model",
5 "path": "/path/to/loras/wan2.2_i2v_A14b_high_noise_lora_rank64_lightx2v_4step_xxx.safetensors",
6 "strength": 1.0
7 },
8 {
9 "name": "low_noise_model",
10 "path": "/path/to/loras/wan2.2_i2v_A14b_low_noise_lora_rank64_lightx2v_4step_xxx.safetensors",
11 "strength": 1.0
12 }
13 ]
14}💡 Tip: Replacexxxwith actual version number (e.g.,1022). Check HuggingFace repository for the latest version
1cd scripts
2bash wan22/run_wan22_moe_i2v_distill.shdenoising_step_list, recommended: [1000, 750, 500, 250]