worstcoder commited on
Commit
4498433
·
verified ·
1 Parent(s): 459203e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - Wan-AI/Wan2.1-T2V-1.3B
5
+ - Wan-AI/Wan2.1-T2V-14B
6
+ pipeline_tag: text-to-video
7
+ ---
8
+ # rCM: Score-Regularized Continuous-Time Consistency Model
9
+ [**Paper**](https://arxiv.org/abs/2510.08431) | [**Website**](https://research.nvidia.com/labs/dir/rcm) | [**Code**](https://github.com/NVlabs/rcm)
10
+
11
+ This repo holds converted Wan official checkpoints in rCM/TurboDiffusion style.
12
+
13
+ Specifically, rCM equivalently replaces the Conv3d layer in the original Wan with a Linear layer for patch embedding, facilitating further optimization. The layer weight is directly reshaped without value change, e.g., from shape [5120, 16, 1, 2, 2] (Conv3d) to shape [5120, 64] (Linear).
14
+
15
+ ## Citation
16
+
17
+ ```
18
+ @article{zheng2025rcm,
19
+ title={Large Scale Diffusion Distillation via Score-Regularized Continuous-Time Consistency},
20
+ author={Zheng, Kaiwen and Wang, Yuji and Ma, Qianli and Chen, Huayu and Zhang, Jintao and Balaji, Yogesh and Chen, Jianfei and Liu, Ming-Yu and Zhu, Jun and Zhang, Qinsheng},
21
+ journal={arXiv preprint arXiv:2510.08431},
22
+ year={2025}
23
+ }
24
+ ```