Back to Wan2.2
Research PreviewVideo GenvisionvideoUpdated May 20, 2026

FashionChameleon: Real-Time Interactive Human-Garment Video Customization

FashionChameleon is a groundbreaking academic research framework for real-time, interactive human-garment video customization. Developed collaboratively by researchers from Xiamen University, Zhejiang University, and Alibaba Group (Quanjian Song, Yefeng Shen, Mengting Chen, Hao Sun, Jinsong Lan, Xiaoyong Zhu, Bo Zheng, and Liujuan Cao), FashionChameleon enables instant garment replacement and dynamic outfit switching during streaming video synthesis.

Built upon the open-weights Wan2.2-TI2V-5B diffusion transformer backbone, FashionChameleon generates customized 720p video at an unprecedented 23.8 FPS on a single NVIDIA H200 GPU—delivering a 30× to 180× speedup over existing video try-on and video customization baselines.


🔬 Methodology & Architecture

FashionChameleon addresses three major challenges in human-centric video generation: long latency, poor temporal motion coherence, and the inability to perform interactive multi-garment switches online.

bash
Reference Person + Target Garment ───► In-Context Teacher Model ───► Streaming DMD ───► KV-Cache Rescheduling ───► Real-Time Video (23.8 FPS)

Core Architecture Components

  1. Teacher Model with In-Context Learning: Trained strictly on single reference-garment pairs using an intentional mismatch strategy to implicitly decouple body motion from garment identity.
  2. Streaming Distillation with Gradient-Reweighted DMD: Fine-tunes the autoregressive diffusion pipeline into a low-step streaming model using Gradient-Reweighted Distribution Matching Distillation (DMD) to eliminate error accumulation and motion drift.
  3. Training-Free KV Cache Rescheduling: Enables real-time interactive multi-garment switching during ongoing video generation via Garment KV Refresh, Historical KV Withdraw, and Reference KV Disentangle.

📊 Benchmarks & Performance

Specification Table
Benchmark MetricFashionChameleon PerformanceBaseline ComparisonStatus
Inference Speed (720p)23.8 FPS (Single H200 GPU)~0.1 - 0.8 FPS (30x–180x speedup)Verified
Backbone ArchitectureWan2.2-TI2V-5BStandard Multi-Step DiffusionVerified
Benchmark DatasetHGC-Bench (240 Triplets)Custom Evaluation SetsVerified
Interactive SwitchingSupported (Training-Free KV Cache)Requires Retraining / OfflineVerified

🚀 Quickstart & Code Usage

bash
git clone https://github.com/QuanjianSong/FashionChameleon.git
cd FashionChameleon
pip install -r requirements.txt
python
import torch
from fashionchameleon import FashionChameleonPipeline

# Load model pipeline initialized on Wan2.2-TI2V-5B backbone
pipeline = FashionChameleonPipeline.from_pretrained(
    "QuanjianSong/FashionChameleon",
    torch_dtype=torch.bfloat16
).to("cuda")

# Generate customized human-garment video stream
output = pipeline(
    reference_image="assets/person.png",
    garment_image="assets/red_jacket.png",
    prompt="A person wearing a stylish red leather jacket walking down a illuminated street",
    num_frames=81,
    height=720,
    width=1280,
    enable_kv_rescheduling=True,
    streaming=True
)

output.save("output_customized_video.mp4")

🔗 Official Links & Resources

Key Features

Real-Time Video Customization: Generates 720p video customization at ~23.8 FPS on a single H200 GPU, achieving 30-180x speedup over prior baselines.

Feature 01

Teacher Model with In-Context Learning: Learns motion coherence during garment transitions using single reference-garment pair training.

Feature 02

Streaming Distillation with Gradient-Reweighted DMD: Maintains temporal consistency and mitigates error accumulation across long video sequences.

Feature 03

Training-Free KV Cache Rescheduling: Enables interactive online multi-garment switching using garment refresh, historical withdraw, and reference disentangle mechanisms.

Feature 04

HGC-Bench Evaluation: Introduced a specialized benchmark with 240 curated triplets for evaluating human-garment video customization.

Feature 05

You might also want to compare

Verified Sources

Tags

research-previewvideo-generationvirtual-try-ondiffusion-transformerreal-time-aiin-context-learning

Model Specs

research-preview

Parameters

5B

Context Window

undisclosed

License

Apache-2.0

Deployment

self-hostable

Resources & Links

Lineage

Model Family

Part of the Wan2.2 family

Only release in this line currently tracked.

Curator Notes

Verified academic collaboration between Xiamen University, Zhejiang University, and Alibaba Group. Paper published on arXiv (arXiv:2605.15824). Official code and HGC-Bench dataset released on GitHub and Hugging Face.

Compare Specs

Compare parameters, context windows, modalities, and benchmark scores of this model side-by-side with others.

Compare Model