GUIAgent commited on
Commit
95b3f74
·
verified ·
1 Parent(s): e0550ab

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_name: Magic-RICH
3
+ pretty_name: Magic-RICH (Mobile GUI Agent Benchmark, CN)
4
+ tags:
5
+ - gui
6
+ - mobile
7
+ - android
8
+ - visual-grounding
9
+ - vqa
10
+ - agent
11
+ - chinese
12
+ task_categories:
13
+ - other
14
+ language:
15
+ - en
16
+ license: apache-2.0
17
+ size_categories:
18
+ - 1K<n<10K
19
+ homepage: https://github.com/OpenBMB/AgentCPM-GUI
20
+ paper: https://arxiv.org/abs/2508.03700
21
+ repository: https://huggingface.co/datasets/GUIAgent/Magic-RICH
22
+ ---
23
+
24
+ # Dataset Card for Magic-RICH
25
+
26
+ ## Dataset Summary
27
+ **Magic-RICH** is a Chinese benchmark dataset for evaluating **mobile GUI agents** in realistic smartphone environments.
28
+ It contains **4,000 step-level samples** across **four subsets**, covering 17 categories and over 150 popular apps.
29
+ Unlike many previous GUI datasets, Magic-RICH also includes **special actions** such as screenshot and long screenshot to better reflect real-world interactions.
30
+
31
+ This dataset is designed for **evaluation only** (no train/dev split) and was used in the development of **MagicGUI**, an open-source GUI agent built on Qwen2-VL.
32
+
33
+ ---
34
+
35
+ ## Subsets
36
+ Magic-RICH is composed of **four balanced subsets** (1,000 samples each):
37
+
38
+ - **Routine**: High-frequency, single-step actions (e.g., tap, scroll, text input).
39
+ - **Instruction**: Direct user commands (e.g., "Open...", "Check membership"), testing instruction-to-action mapping.
40
+ - **Complex**: Harder tasks requiring reasoning (logical conditions, visual analysis, multi-step navigation).
41
+ - **Handling Exception**: Special cases including
42
+ - *Non-interactive* (page cannot be acted on),
43
+ - *Completed* (task already finished),
44
+ - *Loading* (page still in transition).
45
+
46
+ ---
47
+
48
+ ## Dataset Structure
49
+ Each sample contains:
50
+ - `image`: current mobile screen (screenshot)
51
+ - `query`: user instruction or question (Chinese)
52
+ - `label`: ground truth **primitive action** (e.g., `tap(x,y)`, `scroll(x,y,dir)`)
53
+ - `meta`: metadata including subset category and app class
54
+
55
+ Split:
56
+ - **test**: 4,000 samples total (no training/dev data)
57
+
58
+ ---
59
+
60
+ ## Evaluation Protocol
61
+ Three metrics are recommended for evaluation:
62
+ - **Type** – action type accuracy (e.g., Tap vs. Scroll)
63
+ - **Grd** – grounding accuracy (tap/scroll location falls inside ground-truth element box)
64
+ - **SR (Step Success Rate)** – full correctness at the step level (all parameters correct)
65
+
66
+ ---
67
+
68
+ ## Intended Use
69
+ - Benchmarking mobile GUI agents in **step-level action prediction, grounding, and task completion**.
70
+ - Applicable to research in **multimodal reasoning, planning, and robust agent execution**.
71
+
72
+ ---
73
+
74
+ ## Limitations
75
+ - Dataset is **evaluation-only** (no train/val).
76
+ - Focused on **Chinese ecosystem apps**; transferability to non-Chinese environments may require additional datasets.
77
+
78
+ ---
79
+
80
+ ## Ethical Considerations
81
+ - Data collected using **pre-registered accounts** on real devices, separated from real users.
82
+ - Measures taken to avoid **personally identifiable information (PII)** and sensitive data.
83
+
84
+ ---
85
+
86
+ ## Citation
87
+ If you use Magic-RICH in your research, please cite:
88
+
89
+ ```bibtex
90
+ @article{zhang2025agentcpmgui,
91
+ title={Agent{CPM}-{GUI}: Building Mobile-Use Agents with Reinforcement Fine-Tuning},
92
+ author={Zhang, Zhong and Lu, Yaxi and Fu, Yikun and Huo, Yupeng and Yang, Shenzhi and Wu, Yesai and Si, Han and Cong, Xin and Chen, Haotian and Lin, Yankai and Xie, Jie and Zhou, Wei and Xu, Wang and Zhang, Yuanheng and Su, Zhou and Zhai, Zhongwu and Liu, Xiaoming and Mei, Yudong and Xu, Jianming and Tian, Hongyan and Wang, Chongyi and Chen, Chi and Yao, Yuan and Liu, Zhiyuan and Sun, Maosong},
93
+ year={2025},
94
+ journal={arXiv preprint arXiv:2506.01391},
95
+ }