Datasets:
File size: 7,798 Bytes
aa101f0 cade012 aa101f0 cade012 aa101f0 a942f1e aa101f0 a942f1e aa101f0 cade012 aa101f0 864fcfd aa101f0 cade012 aa101f0 cade012 aa101f0 50ea952 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 864fcfd cade012 6104310 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 aa101f0 cade012 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
---
annotations_creators: []
language: en
size_categories:
- 10K<n<100K
task_categories: []
task_ids: []
pretty_name: wave-ui
tags:
- fiftyone
- image
- visual-agents
- os-agents
- gui-grounding
dataset_summary: '
This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 24977 samples.
## Installation
If you haven''t already, install FiftyOne:
```bash
pip install -U fiftyone
```
## Usage
```python
import fiftyone as fo
from fiftyone.utils.huggingface import load_from_hub
# Load the dataset
# Note: other available arguments include ''max_samples'', etc
dataset = load_from_hub("Voxel51/WaveUI-25k")
# Launch the App
session = fo.launch_app(dataset)
```
'
---
# Dataset Card for WaveUI-25k

This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 24977 samples.
## Installation
If you haven't already, install FiftyOne:
```bash
pip install -U fiftyone
```
## Usage
```python
import fiftyone as fo
from fiftyone.utils.huggingface import load_from_hub
# Load the dataset
# Note: other available arguments include 'max_samples', etc
dataset = load_from_hub("Voxel51/WaveUI-25k")
# Launch the App
session = fo.launch_app(dataset)
```
## Dataset Details
### Dataset Description
WaveUI-25k is a curated dataset of approximately 25,000 labeled user interface (UI) elements, assembled to support research and development in UI understanding, navigation, and automation. The dataset is designed for training and evaluating AI agents-particularly those that need to interact with web and mobile UIs-by providing richly annotated examples of real-world UI components. Each example includes detailed metadata to facilitate tasks such as click prediction, coordinate localization, and UI automation.
- **Curated by:** AgentSea
- **Shared by:** AgentSea
- **Language(s) (NLP):** en (with coverage of other languages as they appear in UI text)
- **License:** Not Listed
### Dataset Sources
- **Repository:** Hugging Face: https://huggingface.co/datasets/agentsea/wave-ui-25k
- **Paper:** No dedicated paper for WaveUI-25k, but the main sources are:
- WebUI: Wu et al., 2023
- RoboFlow Website Screenshots: Roboflow Universe
- GroundUI-18K: Zheng et al., 2024
## Uses
### Direct Use
- Training and evaluating AI agents for GUI navigation, click prediction, and coordinate localization.
- Enhancing machine learning models for UI automation, such as robotic process automation (RPA) and multimodal agents.
- Improving UI understanding for both web and mobile interfaces.
- Supporting research in visual-language models (VLMs) and multimodal large language models (MLLMs) that interact with graphical interfaces.
### Out-of-Scope Use
- Any use that involves extracting or inferring personal, sensitive, or private information from UI screenshots, as the dataset is not intended for privacy-invasive applications.
- Use cases requiring exhaustive coverage of all possible UI types or highly specialized, domain-specific UI elements, as the dataset is a filtered subset and may not be comprehensive for all domains.
- Malicious use, such as training agents to exploit security flaws in UIs.
## Dataset Structure
Each entry in WaveUI-25k represents UI elements and includes the following fields:
# WaveUI-25k Dataset Structure
**Core Fields:**
- **`metadata`**: EmbeddedDocumentField - Image properties (size, dimensions)
- **`instruction`**: StringField - UI element type description
- **`source`**: StringField - Data origin (webui, roboflow)
- **`platform`**: StringField - Web, mobile, or desktop
- **`name`**: StringField - Element name
- **`language`**: StringField - Text language
- **`purpose`**: StringField - Element's intended function
- **`expectation`**: StringField - Expected interaction outcome
- **`detections`**: EmbeddedDocumentField containing:
- **`label`**: Element type (button, link)
- **`bounding_box`**: a list of relative bounding box coordinates in [0, 1] in the following format: `[<top-left-x>, <top-left-y>, <width>, <height>]`
- **`text`**: OCR content
- **`description`**: Detailed element description
The dataset provides comprehensive annotations of UI elements for machine learning applications.
The dataset is stored in FiftyOne format, with a total size of approximately 10.6 GB and 24,978 samples.
## Dataset Creation
### Curation Rationale
The motivation behind WaveUI-25k is to provide a high-quality, unified, and richly annotated dataset for advancing the training of AI agents capable of understanding and navigating complex user interfaces. Previous datasets either lacked detailed annotations or suffered from inconsistent labeling, limiting their utility for sophisticated agent training. WaveUI-25k addresses these gaps by harmonizing, cleaning, and enriching data from multiple leading sources.
### Source Data
#### Data Collection and Processing
- The dataset is a unified compilation of three major sources: WebUI, RoboFlow Website Screenshots, and GroundUI-18K.
- Preprocessing steps included schema harmonization, removal of duplicates, filtering out overlapping and low-quality examples, and exclusion of text elements not relevant to the scope.
- Additional annotation was performed to add detailed fields such as purpose and expectation, using a combination of programmatic methods and large language models for enrichment.
#### Who are the source data producers?
- WebUI: Crawled web pages with automatically extracted metadata, produced by academic researchers (Wu et al., 2023).
- RoboFlow Website Screenshots: Synthetic screenshots and annotations generated by the Roboflow team.
- GroundUI-18K: Annotated images for UI grounding, produced by academic researchers (Zheng et al., 2024).
### Annotations
#### Annotation process
- The original datasets provided basic annotations (e.g., bounding boxes, element types).
- AgentSea’s team further annotated the selected 25k subset, adding fields such as name, description, purpose, and expectation.
- Annotation was performed using a combination of manual review, programmatic filtering, and enrichment via large language models.
#### Who are the annotators?
- AgentSea’s applied AI team, with assistance from automated tools and LLMs for metadata enrichment.
#### Personal and Sensitive Information
- The dataset does not intentionally include personal, sensitive, or private information. Most data is synthetic or anonymized, and efforts were made to filter out any potentially sensitive content during curation.
## Bias, Risks, and Limitations
- The dataset may underrepresent certain UI designs, languages, or domains not well-covered by the source datasets.
- Automated annotation and filtering may introduce errors or inconsistencies.
- The dataset is not intended for applications involving personal or sensitive data extraction.
- There may be biases inherent to the source datasets, such as overrepresentation of certain website genres or UI patterns.
### Recommendations
Users should be aware of the above risks and limitations and validate model performance on their specific target domains. Additional annotation or domain adaptation may be necessary for specialized use cases.
## Citation
**BibTeX:**
```bibtex
@misc{agentsea_waveui25k_2024,
title = {WaveUI-25k},
author = {AgentSea},
howpublished = {\url{https://huggingface.co/datasets/agentsea/wave-ui-25k}},
year = {2024}
}
```
## More Information
- The dataset is available for download and exploration on Hugging Face.
- For further questions, contact AgentSea via their Hugging Face page or LinkedIn.
## Dataset Card Authors
- AgentSea Applied AI Team
## Dataset Card Contact
- AgentSea (see Hugging Face repository for contact details)
|