Add dataset card, link to paper and GitHub

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-text-to-text
5
+ tags:
6
+ - vlm
7
+ - self-play
8
+ - reinforcement-learning
9
+ ---
10
+
11
+ # Vision-Zero Dataset
12
+
13
+ This repository contains the dataset introduced in the paper [Vision-Zero: Scalable VLM Self-Improvement via Strategic Gamified Self-Play](https://huggingface.co/papers/2509.25541).
14
+
15
+ Vision-Zero is a label-free, domain-agnostic multi-agent self-play framework for self-evolving Vision-Language Models (VLMs). It trains models through competitive "Who Is the Spy"-style visual games generated from arbitrary image inputs, enabling autonomous training data generation without human annotation.
16
+
17
+ ## Dataset Components
18
+
19
+ The framework utilizes three distinct types of image datasets to enhance reasoning across diverse domains:
20
+
21
+ 1. **CLEVR-based**: Synthetic scenes for logical reasoning.
22
+ 2. **Chart-based**: Data for enhanced chart question answering and document understanding.
23
+ 3. **Real-World**: Real-world image data for diverse vision-centric understanding scenarios.
24
+
25
+ ## Links
26
+
27
+ - **Paper**: [Vision-Zero: Scalable VLM Self-Improvement via Strategic Gamified Self-Play](https://huggingface.co/papers/2509.25541)
28
+ - **Code**: [https://github.com/wangqinsi1/Vision-Zero](https://github.com/wangqinsi1/Vision-Zero)
29
+
30
+ ## Citation
31
+
32
+ If you find Vision-Zero useful in your research, please consider citing the paper:
33
+
34
+ ```bibtex
35
+ @misc{wang2025visionzeroscalablevlmselfimprovement,
36
+ title={Vision-Zero: Scalable VLM Self-Improvement via Strategic Gamified Self-Play},
37
+ author={Qinsi Wang and Bo Liu and Tianyi Zhou and Jing Shi and Yueqian Lin and Yiran Chen and Hai Helen Li and Kun Wan and Wentian Zhao},
38
+ year={2025},
39
+ eprint={2509.25541},
40
+ archivePrefix={arXiv},
41
+ primaryClass={cs.CV},
42
+ url={https://arxiv.org/abs/2509.25541}
43
+ }
44
+ ```