Add pipeline tag and link to paper

#4
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +37 -4
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
- library_name: diffusers
3
  license: apache-2.0
 
4
  tags:
5
  - image-to-video
6
  - image-text-to-video
@@ -38,11 +38,34 @@ MOVA addresses the limitations of proprietary systems like Sora 2 and Veo 3 by o
38
 
39
  ### Model Sources
40
 
 
41
  - **Github:** https://github.com/OpenMOSS/MOVA
42
- - **Paper:** Coming soon.
43
 
44
- ### Model Usage
45
- Please refer to the github page for model usage.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  ## Evaluation
48
  We evaluate our model through both objective benchmarks and subjective human evaluations. Below are the Elo scores and win rates comparing MOVA to existing open-source models.
@@ -55,3 +78,13 @@ We evaluate our model through both objective benchmarks and subjective human eva
55
  <img src="https://cdn-uploads.huggingface.co/production/uploads/64817b8550b759c75d5d1eeb/i5lgZI3NmxLXdJIxndcOp.png" width="1000"/>
56
  <p>
57
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  license: apache-2.0
3
+ pipeline_tag: any-to-any
4
  tags:
5
  - image-to-video
6
  - image-text-to-video
 
38
 
39
  ### Model Sources
40
 
41
+ - **Project Page:** https://mosi.cn/models/mova
42
  - **Github:** https://github.com/OpenMOSS/MOVA
43
+ - **Paper:** [MOVA: Towards Scalable and Synchronized Video-Audio Generation](https://huggingface.co/papers/2602.08794)
44
 
45
+ ## Model Usage
46
+
47
+ Please refer to the [GitHub repository](https://github.com/OpenMOSS/MOVA) for environment setup and detailed instructions.
48
+
49
+ ### Sample Inference
50
+
51
+ Generate a video of single person speech:
52
+ ```bash
53
+ export CP_SIZE=1
54
+ export CKPT_PATH=/path/to/MOVA-360p/
55
+
56
+ torchrun \
57
+ --nproc_per_node=$CP_SIZE \
58
+ scripts/inference_single.py \
59
+ --ckpt_path $CKPT_PATH \
60
+ --cp_size $CP_SIZE \
61
+ --height 352 \
62
+ --width 640 \
63
+ --prompt "A man in a blue blazer and glasses speaks in a formal indoor setting, framed by wooden furniture and a filled bookshelf. Quiet room acoustics underscore his measured tone as he delivers his remarks. At one point, he says, \"I would also say that this election in Germany wasn’t surprising.\"" \
64
+ --ref_path "./assets/single_person.jpg" \
65
+ --output_path "./data/samples/single_person.mp4" \
66
+ --seed 42 \
67
+ --offload cpu
68
+ ```
69
 
70
  ## Evaluation
71
  We evaluate our model through both objective benchmarks and subjective human evaluations. Below are the Elo scores and win rates comparing MOVA to existing open-source models.
 
78
  <img src="https://cdn-uploads.huggingface.co/production/uploads/64817b8550b759c75d5d1eeb/i5lgZI3NmxLXdJIxndcOp.png" width="1000"/>
79
  <p>
80
 
81
+ ## Citation
82
+
83
+ ```bibtex
84
+ @article{yu2026mova,
85
+ title={MOVA: Towards Scalable and Synchronized Video-Audio Generation},
86
+ author={Donghua Yu and Mingshu Chen and Qi Chen and Qi Luo and Qianyi Wu and Qinyuan Cheng and others},
87
+ journal={arXiv preprint arXiv:2602.08794},
88
+ year={2026}
89
+ }
90
+ ```