Views
No views yet
.distcp)huggingface-cli download MUG-V/MUG-V-training --local-dir ./checkpoints --include "MUG-V-10B-torch_dist/*"mp_rank_XX/model_optim_rng.pt)huggingface-cli download MUG-V/MUG-V-training --local-dir ./checkpoints --include "MUG-V-10B-TP4-legacy/*"1# Download checkpoint
2huggingface-cli download MUG-V/MUG-V-training --local-dir ./checkpoints --include "MUG-V-10B-torch_dist/*"
3
4# Download sample data
5huggingface-cli download MUG-V/MUG-V-Training-Samples --repo-type dataset --local-dir ./sample_dataset
6
7# Set environment variables
8export CHECKPOINT_DIR="./checkpoints/MUG-V-10B-torch_dist/torch_dist"
9export MODEL_TYPE="mugdit_10b"
10export DATA_TRAIN="./sample_dataset/train.csv"
11
12# Start training (8 GPUs)
13bash examples/mugv/pretrain_slurm.sh1python -m examples.mugv.convertor.mugdit_mcore2hf \
2 --dcp-dir ./checkpoints/MUG-V-10B-torch_dist/torch_dist/iter_0000000 \
3 --output ./mugdit_10b_hf.pt \
4 --model-size 10B| Format | Parallelism | File Structure | Training | Conversion |
|---|---|---|---|---|
| Torch Distributed | Flexible TP/PP | *.distcp files | ✅ Recommended | ✅ To HF |
| Torch (Legacy) | Fixed TP=4 | mp_rank_XX/ dirs | ⚠️ TP=4 only | ✅ To Torch Dist / HF |
| HuggingFace | None (inference) | Single .pt file | ❌ Not for training | - |
1@article{zhang2025mugv10b,
2 title={MUG-V 10B: High-efficiency Training Pipeline for Large Video Generation Models},
3 author={Zhang, Yongshun and Fan, Zhongyi and Zhang, Yonghang and Li, Zhangzikang and Chen, Weifeng and Feng, Zhongwei and Wang, Chaoyue and Hou, Peng and Zeng, Anxiang},
4 journal={arXiv preprint},
5 year={2025}
6}