Views
No views yet
| Checkpoint | Base model | Sampling steps | File |
|---|---|---|---|
| CoDMD-1.3B | Wan2.1-T2V-1.3B | 4 | CoDMD_wan2.1_T2V_1.3B.pt |
| CoDMD-14B | Wan2.1-T2V-14B | 4 | CoDMD_wan2.1_T2V_14B.pt |
model.pt contains:{"generator": state_dict}generator entry.1git clone https://github.com/JIA-Lab-research/CoDMD.git
2cd CoDMD
3pip install -r requirements.txt
4pip install easydict
5pip install -e .model_path in:configs/wan_dmd_tar.yaml for CoDMD-1.3Bconfigs/wan_dmd_tar_14b.yaml for CoDMD-14B--checkpoint_folder to the folder containing the downloaded model.pt:1python inference.py \
2 --config_path configs/wan_dmd_tar_14b.yaml \
3 --checkpoint_folder <HF_REPO_DIR>/CoDMD_wan2.1_T2V_14B \
4 --output_folder ./results \
5 --prompt_file_path prompts.txt \
6 --num_seeds 5configs/wan_dmd_tar.yaml and the CoDMD_wan2.1_T2V_1.3B checkpoint folder.1@misc{zhang2026codmdcopulaawaredistributionmatching,
2 title={CoDMD: Copula-aware Distribution Matching Distillation for Fast Video Generation},
3 author={Wenhu Zhang and Kun Cheng and Changyuan Wang and Shiyao Li and Yuechen Zhang and Wenbo Li and Jiajun Zha and Jingyi Zhang and Kang Zhao and Jiaya Jia},
4 year={2026},
5 eprint={2606.21982},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2606.21982}
9}