leosltl commited on
Commit
c50865f
·
verified ·
1 Parent(s): 0772641

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ - image-to-text
6
+ tags:
7
+ - android
8
+ - gui-agent
9
+ - device-control
10
+ - mobile
11
+ - ui-automation
12
+ - google-research
13
+ pretty_name: Android Control
14
+ size_categories:
15
+ - 10K<n<100K
16
+ ---
17
+
18
+ # Android Control (Community Mirror)
19
+
20
+ > **This is a community mirror of the official [Android Control](https://github.com/google-research/google-research/tree/master/android_control) dataset by Google Research, hosted on Hugging Face for easier access.**
21
+
22
+ The original dataset is hosted on Google Cloud Storage at `gs://gresearch/android_control/`. This copy is provided to make it more accessible to the research community via Hugging Face.
23
+
24
+ ## Dataset Description
25
+
26
+ Android Control is a dataset for training and evaluating Android device control agents. It contains **15,283 demonstrations** across **833 Android apps** covering **40 app categories**, with **14,548 unique tasks**.
27
+
28
+ Each demonstration includes:
29
+ - **Screenshots** (PNG-encoded)
30
+ - **Accessibility trees** (serialized protocol buffer format)
31
+ - **Natural language instructions** — both high-level goals and low-level step-by-step instructions
32
+ - **Actions** — `click`, `scroll`, `input_text`, `open_app`, `navigate_home`, `navigate_back`, `long_press`, `wait`
33
+
34
+ ### Data Format
35
+
36
+ The data is stored as **TFRecord files** with GZIP compression. Each record contains:
37
+ - `episode_id`: unique identifier for the demonstration
38
+ - `goal`: high-level task description
39
+ - `step_instructions`: low-level action descriptions
40
+ - `screenshots`: PNG-encoded screen images
41
+ - `accessibility_trees`: serialized accessibility tree protos
42
+ - `actions`: JSON-encoded action sequences
43
+
44
+ ### Loading the Data
45
+
46
+ ```python
47
+ import tensorflow as tf
48
+
49
+ filenames = tf.io.gfile.glob('path/to/android_control*')
50
+ raw_dataset = tf.data.TFRecordDataset(filenames, compression_type='GZIP')
51
+ ```
52
+
53
+ ## Citation
54
+
55
+ If you use this dataset, please cite the original paper:
56
+
57
+ ```bibtex
58
+ @article{li2024effects,
59
+ title={On the Effects of Data Scale on UI Control Agents},
60
+ author={Li, Wei and Bishop, William and Li, Alice and Rawles, Chris and Campbell-Ajala, Folawiyo and Tyamagundlu, Divya and Riva, Oriana},
61
+ journal={arXiv preprint arXiv:2406.03679},
62
+ year={2024}
63
+ }
64
+ ```
65
+
66
+ ## License
67
+
68
+ This dataset is released under the **Apache License 2.0** by Google Research.
69
+
70
+ ## Disclaimer
71
+
72
+ This is an unofficial community mirror. All credit goes to the original authors at Google Research. If you are an author and would like this mirror removed, please open an issue.