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.
Reference Person + Target Garment ───► In-Context Teacher Model ───► Streaming DMD ───► KV-Cache Rescheduling ───► Real-Time Video (23.8 FPS)Core Architecture Components
- 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.
- 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.
- 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
| Benchmark Metric | FashionChameleon Performance | Baseline Comparison | Status |
|---|---|---|---|
| Inference Speed (720p) | 23.8 FPS (Single H200 GPU) | ~0.1 - 0.8 FPS (30x–180x speedup) | Verified |
| Backbone Architecture | Wan2.2-TI2V-5B | Standard Multi-Step Diffusion | Verified |
| Benchmark Dataset | HGC-Bench (240 Triplets) | Custom Evaluation Sets | Verified |
| Interactive Switching | Supported (Training-Free KV Cache) | Requires Retraining / Offline | Verified |
🚀 Quickstart & Code Usage
git clone https://github.com/QuanjianSong/FashionChameleon.git
cd FashionChameleon
pip install -r requirements.txtimport 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.
Teacher Model with In-Context Learning: Learns motion coherence during garment transitions using single reference-garment pair training.
Streaming Distillation with Gradient-Reweighted DMD: Maintains temporal consistency and mitigates error accumulation across long video sequences.
Training-Free KV Cache Rescheduling: Enables interactive online multi-garment switching using garment refresh, historical withdraw, and reference disentangle mechanisms.
HGC-Bench Evaluation: Introduced a specialized benchmark with 240 curated triplets for evaluating human-garment video customization.
You might also want to compare
Verified Sources
Tags
Model Specs
Parameters
5B
Context Window
undisclosed
License
Apache-2.0
Deployment
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