Add dataset card and link to paper

#3
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-text-to-text
5
+ tags:
6
+ - gui
7
+ - benchmark
8
+ - vision-language-models
9
+ - multimodal
10
+ ---
11
+
12
+ # FineState-Bench
13
+
14
+ [FineState-Bench](https://huggingface.co/papers/2604.27974) is a comprehensive benchmark and diagnostic framework designed for fine-grained state control in GUI agents across desktop, web, and mobile environments.
15
+
16
+ This project addresses the critical evaluation gap in current GUI agent benchmarks by shifting focus from coarse-grained task completion to precise state manipulation and control capabilities.
17
+
18
+ - **Paper:** [FineState-Bench: Benchmarking State-Conditioned Grounding for Fine-grained GUI State Setting](https://huggingface.co/papers/2604.27974)
19
+ - **Repository:** [https://github.com/FengxianJi/FineState-Bench](https://github.com/FengxianJi/FineState-Bench)
20
+
21
+ ## Dataset Summary
22
+
23
+ FineState-Bench comprises 2,209 instances (with 2,257 high-quality tasks) across three major platforms:
24
+ - **Desktop**: Native application environments.
25
+ - **Web**: Browser-based interactions.
26
+ - **Mobile**: Android and mobile-style interfaces.
27
+
28
+ The benchmark spans four interaction families and 23 UI component types, with each instance explicitly specifying an exact target state for fine-grained state setting. It introduces *FineState-Metrics*, a four-stage diagnostic pipeline: Localization Success Rate (SR@Loc), Interaction Success Rate (SR@Int), and Exact State Success Rates (ES-SR).
29
+
30
+ ## Key Features
31
+
32
+ - **Fine-Grained State Control**: Focuses on precise state manipulation rather than just final task success.
33
+ - **Diagnostic Framework**: Includes a Visual Diagnostic Assistant (VDA) to generate descriptions and localization hints for bottleneck analysis.
34
+ - **Multi-Platform Coverage**: Comprehensive evaluation across desktop, web, and mobile environments.
35
+
36
+ ## Usage
37
+
38
+ You can use the benchmark by cloning the official repository and following the evaluation scripts. Below are examples of how to run the evaluation:
39
+
40
+ ### Desktop Evaluation
41
+ ```bash
42
+ # Run desktop evaluation
43
+ ./desktop.sh
44
+
45
+ # Or use Python directly
46
+ python -m evaluation.benchmark --platform desktop --model GUI-R1-7B --limit 10
47
+ ```
48
+
49
+ ### Web Evaluation
50
+ ```bash
51
+ # Run web evaluation
52
+ ./web.sh
53
+
54
+ # Or use Python directly
55
+ python web.py --model Holo1-7B --limit 5 --scenario 1
56
+ ```
57
+
58
+ ### Mobile Evaluation
59
+ ```bash
60
+ # Run mobile evaluation
61
+ ./mobile.sh
62
+
63
+ # Or use Python directly
64
+ python mobile.py --model SpiritSight-Agent-8B --limit 10
65
+ ```
66
+
67
+ ## Citation
68
+
69
+ If you use FineState-Bench in your research, please cite the following:
70
+
71
+ ```bibtex
72
+ @article{ji2024finestate,
73
+ title={FineState-Bench: Benchmarking State-Conditioned Grounding for Fine-grained GUI State Setting},
74
+ author={Ji, Fengxian and others},
75
+ journal={arXiv preprint arXiv:2604.27974},
76
+ year={2024}
77
+ }
78
+ ```