endlesswinds commited on
Commit
966f6fa
·
1 Parent(s): 0d6c9c8

Extract train/validation/test splits to JSON; add README

Browse files
README.md CHANGED
@@ -1,12 +1,12 @@
1
- # AndroidControl Test Set (JSON)
2
 
3
  ## Overview
4
 
5
- This dataset provides the **test split** of [AndroidControl](https://arxiv.org/abs/2405.01958) in a ready-to-use JSON format, extracted from the original Google Cloud data release.
6
 
7
- **Motivation:** Most GUI Grounding works use [GUI-Actor-Data](https://huggingface.co/datasets/cckevinn/GUI-Actor-Data) for training, which includes AndroidControl images but **does not include the test set JSON**. Obtaining the test split from the original source requires downloading the full dataset (~47 GB) from Google Cloud, which is cumbersome. This dataset provides the test split JSON files directly so researchers can run evaluations immediately.
8
 
9
- **Images:** Screenshots are not included in this repository. Use the images from [cckevinn/GUI-Actor-Data](https://huggingface.co/datasets/cckevinn/GUI-Actor-Data), which covers all splits including the test set.
10
 
11
  ---
12
 
@@ -14,8 +14,12 @@ This dataset provides the **test split** of [AndroidControl](https://arxiv.org/a
14
 
15
  | File | Episodes | Steps | Description |
16
  |------|----------|-------|-------------|
17
- | `test-AndroidControl.json` | 1,543 | 8,444 | All action types |
18
- | `test-AndroidControl-click.json` | 1,484 | 5,074 | Click actions only |
 
 
 
 
19
 
20
  ---
21
 
@@ -66,7 +70,7 @@ Both files share the same structure: a **list of episodes**, where each episode
66
  | `open_app` | `app_name` | Launch an application |
67
  | `wait` | — | Wait for screen to load |
68
 
69
- > `test-AndroidControl-click.json` contains only `click` steps and is intended for point-grounding evaluation.
70
 
71
  ---
72
 
@@ -78,16 +82,17 @@ import json
78
  with open("test-AndroidControl.json") as f:
79
  episodes = json.load(f)
80
 
81
- # episodes[i] → i-th episode (list of steps)
82
- # episodes[i][j] → j-th step of i-th episode
83
- # episodes[i][j]["img_url"] → match against GUI-Actor-Data images
 
84
  ```
85
 
86
  ---
87
 
88
  ## Source
89
 
90
- Derived from the [AndroidControl](https://arxiv.org/abs/2405.01958) dataset released by Google Research. This repository contains only the test split in a reformatted JSON structure; no images are redistributed.
91
 
92
  Please cite the original work if you use this dataset:
93
 
 
1
+ # AndroidControl (JSON)
2
 
3
  ## Overview
4
 
5
+ This dataset provides **all splits** of [AndroidControl](https://arxiv.org/abs/2406.03679) in a ready-to-use JSON format, extracted from the original Google Cloud data release.
6
 
7
+ **Motivation:** Most GUI agent works use [GUI-Actor-Data](https://huggingface.co/datasets/cckevinn/GUI-Actor-Data) for training, which includes AndroidControl images but **does not include the test set JSON**. Obtaining any split from the original source requires downloading the full dataset (~47 GB) from Google Cloud, which is cumbersome. This dataset provides all splits as lightweight JSON files so researchers can use them directly for training or evaluation.
8
 
9
+ **Images:** Screenshots are not included in this repository. Use the images from [cckevinn/GUI-Actor-Data](https://huggingface.co/datasets/cckevinn/GUI-Actor-Data), which covers all splits.
10
 
11
  ---
12
 
 
14
 
15
  | File | Episodes | Steps | Description |
16
  |------|----------|-------|-------------|
17
+ | `train-AndroidControl.json` | 13,594 | 74,714 | Train — all action types |
18
+ | `train-AndroidControl-click.json` | 13,106 | 46,424 | Train — click actions only |
19
+ | `validation-AndroidControl.json` | 137 | 690 | Validation — all action types |
20
+ | `validation-AndroidControl-click.json` | 133 | 420 | Validation — click actions only |
21
+ | `test-AndroidControl.json` | 1,543 | 8,444 | Test — all action types |
22
+ | `test-AndroidControl-click.json` | 1,484 | 5,074 | Test — click actions only |
23
 
24
  ---
25
 
 
70
  | `open_app` | `app_name` | Launch an application |
71
  | `wait` | — | Wait for screen to load |
72
 
73
+ > `-click` variants contain only `click` steps and are intended for point-grounding evaluation.
74
 
75
  ---
76
 
 
82
  with open("test-AndroidControl.json") as f:
83
  episodes = json.load(f)
84
 
85
+ # episodes[i] → i-th episode (list of steps)
86
+ # episodes[i][j] → j-th step of i-th episode
87
+ # episodes[i][j]["img_url"] → match against GUI-Actor-Data images
88
+ # episodes[i][j]["action"] → ground-truth action for evaluation
89
  ```
90
 
91
  ---
92
 
93
  ## Source
94
 
95
+ Derived from the [AndroidControl](https://arxiv.org/abs/2406.03679) dataset released by Google Research. All splits are reformatted into JSON; no images are redistributed.
96
 
97
  Please cite the original work if you use this dataset:
98
 
train-AndroidControl-click.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ebd1221d5c73e5b90672586ee1df36e5fb8f6fde1b2a5d9744b176533d775d8
3
+ size 20372318
train-AndroidControl.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d52121e3f3be05795e6c86d8df715e76e8db4a1d6f25ad3a7c7fc6c59ac4896
3
+ size 32210310
validation-AndroidControl-click.json ADDED
The diff for this file is too large to render. See raw diff
 
validation-AndroidControl.json ADDED
The diff for this file is too large to render. See raw diff