Text-to-Video
Diffusers
Safetensors
WanPipeline
wlsaidhi commited on
Commit
46f0d7a
·
verified ·
1 Parent(s): 761a4d7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -1
README.md CHANGED
@@ -1,7 +1,77 @@
1
  ---
2
  license: apache-2.0
 
 
 
3
  ---
4
 
5
  # FastWan-QAD-1.3B-SA2
 
 
 
 
 
 
 
 
 
 
6
 
7
- NVFP4 linear layers with SageAttention2++
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: text-to-video
4
+ library_name: diffusers
5
+ arxiv: 2603.00040
6
  ---
7
 
8
  # FastWan-QAD-1.3B-SA2
9
+ <p align="center">
10
+ <img src="https://raw.githubusercontent.com/hao-ai-lab/FastVideo/main/assets/logos/logo.svg" width="200"/>
11
+ </p>
12
+ <div>
13
+ <div align="center">
14
+ <a href="https://github.com/hao-ai-lab/FastVideo">Github</a> |
15
+ <a href="https://haoailab.com/blogs/fastwan-qad/">Blog</a> |
16
+ <a href="https://hao-ai-lab.github.io/FastVideo">Documentation</a>
17
+ </div>
18
+ </div>
19
 
20
+ ## Introduction
21
+
22
+ FastWan-QAD-1.3B-SA2 is a variant of FastWan-QAD-1.3B that swaps the SageAttention3 FP4 backend for **SageAttention2++**, trading a small amount of speed for improved visual quality. It generates a 5-second 480p video in approximately **2 seconds** on an RTX 5090.
23
+
24
+ Like all FastWan-QAD models, it is built on [Wan-AI/Wan2.1-T2V-1.3B-Diffusers](https://huggingface.co/Wan-AI/Wan2.1-T2V-1.3B-Diffusers) and trained with **quantization-aware distillation (QAD)** for 3-step inference with NVFP4 linear layers.
25
+
26
+ > **Hardware requirement:** RTX 5090 (sm100+). NVFP4 linear layers require Blackwell-native support. See [FastWan-QAD-FP8-1.3B](https://huggingface.co/FastVideo/FastWan-QAD-FP8-1.3B) for RTX 4090 compatibility.
27
+
28
+ ---
29
+
30
+ ## Model Overview
31
+
32
+ - **3-step inference** via quantization-aware distillation
33
+ - **NVFP4 linear layers** for Blackwell GPU throughput
34
+ - **SageAttention2++ backend** for attention computation
35
+ - Trained at **480p (832×480)** resolution, 81 frames (5 seconds at 16 fps)
36
+ - No classifier-free guidance at inference time
37
+ - Fast decoding via [TAEHV](https://github.com/madebyollin/taehv) tiny autoencoder
38
+
39
+ ## Performance
40
+
41
+ | Model | Hardware | Generation Time (5s 480p) |
42
+ |---|---|---|
43
+ | FastWan-QAD-1.3B | RTX 5090 | ~1.78s |
44
+ | FastWan-QAD-1.3B-SA2 | RTX 5090 | **~2.0s** |
45
+ | FastWan-QAD-FP8-1.3B | RTX 4090 | ~3.4s |
46
+ | TurboDiffusion | RTX 5090 | 6.10s |
47
+ | LightX2V | RTX 5090 | 6.91s |
48
+
49
+ ## Inference
50
+
51
+ ```bash
52
+ # Install Tiny Autoencoder
53
+ git clone https://github.com/madebyollin/taehv.git
54
+ uv pip install -e taehv/
55
+
56
+ git clone https://github.com/hao-ai-lab/FastVideo.git
57
+ cd FastVideo
58
+ uv pip install -e .
59
+ cd examples/inference/optimizations
60
+ python nvfp4_sa2_wan_2_1_3b.py --taehv-checkpoint /path/to/taehv/taew2_1.pth
61
+ ```
62
+
63
+ ## Training
64
+
65
+ More details coming soon.
66
+
67
+ ---
68
+
69
+ It would be greatly appreciated if you cite our paper:
70
+ ```
71
+ @article{Zhang2026AttnQAT,
72
+ title={Attn-QAT: 4-Bit Attention With Quantization-Aware Training},
73
+ author={Zhang, Peiyuan and Noto, Matthew and Tan, Wenxuan and Jiang, Chengquan and Lin, Will and Zhou, Wei and Zhang, Hao},
74
+ journal={arXiv preprint arXiv:2603.00040},
75
+ year={2026}
76
+ }
77
+ ```