The dataset viewer is not available for this dataset.
Error code: ConfigNamesError
Exception: AttributeError
Message: 'str' object has no attribute 'items'
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 66, in compute_config_names_response
config_names = get_dataset_config_names(
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
dataset_module = dataset_module_factory(
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1029, in dataset_module_factory
raise e1 from None
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1004, in dataset_module_factory
).get_module()
^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 682, in get_module
config_name: DatasetInfo.from_dict(dataset_info_dict)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/info.py", line 284, in from_dict
return cls(**{k: v for k, v in dataset_info_dict.items() if k in field_names})
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<string>", line 20, in __init__
File "/usr/local/lib/python3.12/site-packages/datasets/info.py", line 170, in __post_init__
self.features = Features.from_dict(self.features)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1890, in from_dict
obj = generate_from_dict(dic)
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1474, in generate_from_dict
return {key: generate_from_dict(value) for key, value in obj.items()}
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1474, in generate_from_dict
return {key: generate_from_dict(value) for key, value in obj.items()}
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1474, in generate_from_dict
return {key: generate_from_dict(value) for key, value in obj.items()}
^^^^^^^^^
AttributeError: 'str' object has no attribute 'items'Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
iOS-1K-Mobile-UI-Dataset
Overview
iOS-1K-Mobile-UI-Dataset is a curated dataset of 1,000 real-world iOS mobile UI screens collected from diverse application categories available on the Apple App Store.
Each screen is paired with human-validated structured JSON ground truth annotations, enabling research in UI understanding, layout analysis, and multimodal modeling.
The dataset includes:
- Simple layouts (e.g., login, onboarding screens)
- Visually dense interfaces (e.g., feeds, checkout flows)
- Structured UI element annotations
- Bounding boxes for UI components
- Element type labels
- Clickability attributes
- Text content for text-bearing elements
Dataset Structure
ios-ui-dataset/
β
βββ images/
β βββ 0001.png
β βββ 0002.png
β βββ ...
β
βββ annotations/
β βββ 0001.json
β βββ 0002.json
β βββ ...
β
βββ metadata.csv
βββ README.md
βββ dataset_infos.json
Metadata Format
The metadata.csv file provides mapping between images and annotations:
| screen_id | image_file | annotation_file |
|---|---|---|
| 0001 | images/0001.png | annotations/0001.json |
| 0002 | images/0002.png | annotations/0002.json |
Example Screen
Below is a sample Eleven Reader Appβs login screen from the Dataset :
Annotation Format
Each JSON annotation follows a structured schema:
{
"screen_id": "0001",
"elements": [
{
"id": 1,
"type": "button",
"bbox": [x, y, width, height],
"text": "Login",
"clickable": true
}
]
}
Each element includes:
type: UI component category (e.g., button, text, image)bbox: Bounding box coordinatestext: Visible text content (if applicable)clickable: Boolean interaction label
Intended Use Cases
This dataset is designed for:
- Mobile UI understanding
- Layout parsing and structural analysis
- UI element detection
- Visionβlanguage modeling
- Multimodal LLM grounding
- Autonomous UI agent research
Download Instructions
You can download the dataset using the Hugging Face Hub:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="atharparvezce/iOS-1K-Mobile-UI-Dataset",
repo_type="dataset",
local_dir="./iOS-1K-Mobile-UI-Dataset"
)
Limitations
- Covers only iOS platform interfaces
- Contains 1,000 screens in the current release
- Category distribution reflects App Store sampling
- UI copyrights remain with original application developers
Future Work
We are actively working on extending the iOS-1K-Mobile-UI-Dataset with:
- Additional UI screens across more application categories
- Increased dataset scale beyond 1,000 screens
- More detailed attribute-level annotations
- Expanded layout complexity coverage
- Benchmark splits for training and evaluation
Our goal is to develop this into a larger benchmark for mobile UI understanding and multimodal research.
If you are interested in collaboration, contributing to the dataset, or using extended versions for research purposes, please feel free to reach out:
License
This dataset is released under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) license.
- Attribution required
- Non-commercial use only
The dataset is intended strictly for academic and research purposes. No personal user data is included.
Citation
If you use this dataset in your research, please cite:
@dataset{ios_1k_mobile_ui_dataset_2026,
title = {iOS-1K-Mobile-UI-Dataset: A Human-Validated iOS UI Benchmark},
author = {Athar Parvez},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/atharparvezce/iOS-1K-Mobile-UI-Dataset}
}
- Downloads last month
- 35