English
medical
video
generation
wangrongsheng commited on
Commit
e485440
·
verified ·
1 Parent(s): aacd658
Files changed (1) hide show
  1. README.md +65 -3
README.md CHANGED
@@ -1,3 +1,65 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - FreedomIntelligence/MedVideoCap-55K
5
+ language:
6
+ - en
7
+ base_model:
8
+ - Wan-AI/Wan2.1-T2V-14B
9
+ tags:
10
+ - medical
11
+ - video
12
+ - generation
13
+ ---
14
+ # Unlocking Medical Video Generation by Scaling Granularly-annotated Medical Videos
15
+
16
+ ![](https://i.imgur.com/waxVImv.png)
17
+
18
+ <p align="center">
19
+ [📃 <a href="https://arxiv.org/abs/2507.05675" target="_blank">Paper</a>] | [🤗 <a href="https://huggingface.co/datasets/FreedomIntelligence/MedVideoCap-55K" target="_blank">Dataset</a>] | [🤗 <a href="https://huggingface.co/FreedomIntelligence/MedGen-1.3B" target="_blank">MedGen-1.3B</a>] | [🤗 <a href="https://huggingface.co/FreedomIntelligence/MedGen-14B" target="_blank">MedGen-14B</a>] | [🚀 <a href="https://huggingface.co/blog/wangrongsheng/medvideocap-55k" target="_blank">Blog</a>]
20
+ </p>
21
+
22
+ ## ⚡ Introduction
23
+
24
+ Recent advances in video generation have shown remarkable progress in open-domain settings, yet medical video generation remains largely underexplored. Medical videos are critical for applications such as clinical training, education, and simulation, requiring not only high visual fidelity but also strict medical accuracy. However, current models often produce unrealistic or erroneous content when applied to medical prompts, largely due to the lack of large-scale, high-quality datasets tailored to the medical domain. To address this gap, we introduce **MedVideoCap-55K**, the first large-scale, diverse, and caption-rich dataset for medical video generation. It comprises over 55,000 curated clips spanning real-world medical scenarios, providing a strong foundation for training generalist medical video generation models. Built upon this dataset, we develop **MedGen**, which achieves leading performance among open-source models and rivals commercial systems across multiple benchmarks in both visual quality and medical accuracy.
25
+ We hope our dataset and model can serve as a valuable resource and help catalyze further research in medical video generation.
26
+
27
+
28
+ ## 🚀Quick Start
29
+
30
+ #### Install
31
+
32
+ ```python
33
+ pip install -r requirements.txt
34
+ ```
35
+
36
+ #### Inference
37
+
38
+ ```python
39
+ python inference.py --prompt "A doctor examining a patient" --output exam.mp4
40
+ python inference.py --batch prompts.json --output_dir results/
41
+ python inference.py --prompt "..." --gpu 1 --output result.mp4
42
+ ```
43
+
44
+ ## 🤩 Acknowledgement
45
+
46
+ Our works are inspired by the following works.
47
+
48
+ - [FastVideo](https://github.com/hao-ai-lab/FastVideo): a lightweight framework for accelerating large video diffusion models.
49
+ - [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio): an open-source Diffusion model engine developed.
50
+ - [VBench](https://github.com/Vchitect/VBench): a comprehensive benchmark suite for video generative models.
51
+ - [VideoScore](https://github.com/TIGER-AI-Lab/VideoScore): a automatic metrics to simulate fine-grained human feedback for video generation.
52
+
53
+ ## 📖 Citation
54
+
55
+ ```bibtex
56
+ @misc{wang2025medgenunlockingmedicalvideo,
57
+ title={MedGen: Unlocking Medical Video Generation by Scaling Granularly-annotated Medical Videos},
58
+ author={Rongsheng Wang and Junying Chen and Ke Ji and Zhenyang Cai and Shunian Chen and Yunjin Yang and Benyou Wang},
59
+ year={2025},
60
+ eprint={2507.05675},
61
+ archivePrefix={arXiv},
62
+ primaryClass={cs.CV},
63
+ url={https://arxiv.org/abs/2507.05675},
64
+ }
65
+ ```