Datasets:
hheiden-roots
commited on
Commit
•
29cac78
1
Parent(s):
1f39a17
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,136 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
license: cc-by-4.0
|
5 |
+
size_categories:
|
6 |
+
- 10K<n<100K
|
7 |
+
task_categories:
|
8 |
+
- image-to-text
|
9 |
+
- text-generation
|
10 |
+
pretty_name: Widget Captioning
|
11 |
+
tags:
|
12 |
+
- screens
|
13 |
+
- mobile
|
14 |
+
- phones
|
15 |
---
|
16 |
+
|
17 |
+
# Dataset Card for Dataset Name
|
18 |
+
|
19 |
+
Widget Captioning is a dataset for providing captions for UI elements on mobile screens.
|
20 |
+
It uses the RICO image database.
|
21 |
+
|
22 |
+
## Dataset Details
|
23 |
+
|
24 |
+
### Dataset Description
|
25 |
+
|
26 |
+
- **Curated by:** Google Research, UIUC, Northwestern, Georgia Tech
|
27 |
+
- **Funded by:** Google Research
|
28 |
+
- **Shared by:** Google Research
|
29 |
+
- **Language(s) (NLP):** English
|
30 |
+
- **License:** CC-BY-4.0
|
31 |
+
|
32 |
+
### Dataset Sources
|
33 |
+
|
34 |
+
- **Repository:**
|
35 |
+
- [google-research-datasets/widget-caption](https://github.com/google-research-datasets/widget-caption)
|
36 |
+
- [RICO raw downloads](http://www.interactionmining.org/rico.html)
|
37 |
+
- **Paper:**
|
38 |
+
- [Widget Captioning: Generating Natural Language Description for Mobile User Interface Elements](https://arxiv.org/abs/2010.04295)
|
39 |
+
- [Rico: A Mobile App Dataset for Building Data-Driven Design Applications](https://dl.acm.org/doi/10.1145/3126594.3126651)
|
40 |
+
|
41 |
+
## Uses
|
42 |
+
|
43 |
+
This dataset is for developing multimodal automations for mobile screens.
|
44 |
+
|
45 |
+
### Direct Use
|
46 |
+
|
47 |
+
- Enhancing screen readers
|
48 |
+
- Screen indexing
|
49 |
+
- Conversational mobile applications
|
50 |
+
- Q&A on screens
|
51 |
+
|
52 |
+
## Dataset Structure
|
53 |
+
|
54 |
+
- `screen_id`: Unique RICO screen ID
|
55 |
+
- `image`: RICO screenshot
|
56 |
+
- `image_icon`: Google Play Store icon for the app
|
57 |
+
- `image_semantic`: Semantic RICO screenshot; details are abstracted away to main visual UI elements
|
58 |
+
- `file_name`: Image local filename
|
59 |
+
- `file_name_icon`: Icon image local filename
|
60 |
+
- `file_name_semantic`: Screenshot Image as a semantic annotated image local filename
|
61 |
+
- `captions`: A list of string captions
|
62 |
+
- `bbox`: The bounding box for the widget being captioned, relatively scaled with the image size so that coordinates are in [0, 1]
|
63 |
+
- `app_package_name`: Android package name
|
64 |
+
- `play_store_name`: Google Play Store name
|
65 |
+
- `category`: Type of category of the app
|
66 |
+
- `number_of_downloads`: Number of downloads of the app (as a coarse range string)
|
67 |
+
- `number_of_ratings`: Number of ratings of the app on the Google Play store (as of collection)
|
68 |
+
- `average_rating`: Average rating of the app on the Google Play Store (as of collection)
|
69 |
+
- `semantic_annotations`: Reduced view hierarchy, to the semantically-relevant portions of the full view hierarchy. It corresponds to what is visualized in `image_semantic` and has a lot of details about what's on screen. It is stored as a JSON object string.
|
70 |
+
|
71 |
+
## Dataset Creation
|
72 |
+
|
73 |
+
### Curation Rationale
|
74 |
+
|
75 |
+
- RICO rationale: Create a broad dataset that can be used for UI automation. An explicit goal was to develop automation software that can validate an app's design and assess whether it achieves its stated goal.
|
76 |
+
- Widget Captioning rationale: Create a dataset that helps machines reason about UI elements on screens
|
77 |
+
|
78 |
+
### Source Data
|
79 |
+
|
80 |
+
- RICO: Mobile app screenshots, collected on Android devices.
|
81 |
+
- Widget Captioning: Human annotated concise captions for widgets on screen
|
82 |
+
|
83 |
+
#### Data Collection and Processing
|
84 |
+
|
85 |
+
- RICO: Human and automated collection of Android screens. ~9.8k free apps from the Google Play Store.
|
86 |
+
- Widget Captioning: Takes the subset of screens used in RICO, eliminates screens with missing or inaccurate view hierarchies.
|
87 |
+
|
88 |
+
#### Who are the source data producers?
|
89 |
+
|
90 |
+
- RICO: 13 human workers (10 from the US, 3 from the Philippines) through UpWork.
|
91 |
+
- Widget Captioning: 5.4k annotators through Amazon Mechanical Turk
|
92 |
+
|
93 |
+
## Citation
|
94 |
+
|
95 |
+
### RICO
|
96 |
+
|
97 |
+
**BibTeX:**
|
98 |
+
|
99 |
+
```misc
|
100 |
+
@inproceedings{deka2017rico,
|
101 |
+
title={Rico: A mobile app dataset for building data-driven design applications},
|
102 |
+
author={Deka, Biplab and Huang, Zifeng and Franzen, Chad and Hibschman, Joshua and Afergan, Daniel and Li, Yang and Nichols, Jeffrey and Kumar, Ranjitha},
|
103 |
+
booktitle={Proceedings of the 30th annual ACM symposium on user interface software and technology},
|
104 |
+
pages={845--854},
|
105 |
+
year={2017}
|
106 |
+
}
|
107 |
+
```
|
108 |
+
|
109 |
+
**APA:**
|
110 |
+
|
111 |
+
Deka, B., Huang, Z., Franzen, C., Hibschman, J., Afergan, D., Li, Y., ... & Kumar, R. (2017, October). Rico: A mobile app dataset for building data-driven design applications. In Proceedings of the 30th annual ACM symposium on user interface software and technology (pp. 845-854).
|
112 |
+
|
113 |
+
### Widget Captioning
|
114 |
+
|
115 |
+
**BibTeX:**
|
116 |
+
|
117 |
+
```misc
|
118 |
+
@inproceedings{li2020widget,
|
119 |
+
title={Widget Captioning: Generating Natural Language Description for Mobile User Interface Elements},
|
120 |
+
author={Li, Yang and Li, Gang and He, Luheng and Zheng, Jingjie and Li, Hong and Guan, Zhiwei},
|
121 |
+
booktitle={Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)},
|
122 |
+
pages={5495--5510},
|
123 |
+
year={2020}
|
124 |
+
}
|
125 |
+
```
|
126 |
+
|
127 |
+
**APA:**
|
128 |
+
|
129 |
+
Li, Y., Li, G., He, L., Zheng, J., Li, H., & Guan, Z. (2020, November). Widget Captioning: Generating Natural Language Description for Mobile User Interface Elements. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP) (pp. 5495-5510).
|
130 |
+
## Dataset Card Authors
|
131 |
+
|
132 |
+
Hunter Heidenreich
|
133 |
+
|
134 |
+
## Dataset Card Contact
|
135 |
+
|
136 |
+
hunter "DOT" heidenreich "AT" rootsautomation "DOT" com
|