Datasets:
The dataset viewer is not available for this split.
Error code: UnexpectedError
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.
cua-lite/GUIOdyssey
cua-lite preprocessed version of GUIOdyssey (hflqf88888/GUIOdyssey). Android-only dataset covering cross-app trajectory episodes and screen-understanding samples.
Origin
Load via datasets
from datasets import load_dataset
# entire dataset
ds = load_dataset("cua-lite/GUIOdyssey")
# just one (platform, task_type) cohort
ds = load_dataset("cua-lite/GUIOdyssey", "mobile-trajectory")
You can also filter by metadata.platform / metadata.task_type /
metadata.others.* after loading; every row carries a rich metadata
struct (see schema below).
Schema
Each row has these columns:
| column | type | notes |
|---|---|---|
image_ids |
list[string] | content-addressed ids (<sha256>.<ext>), enables cross-parquet / cross-dataset dedup |
images |
list[Image] | bytes embedded at HF push time; matches image_ids index-for-index |
messages |
list[struct] | OpenAI-style turns with role + structured content |
metadata |
struct | {platform, task_type, split, others{...}} |
Coordinate values in messages are normalized to [0, 1000] integers.
Layout
<platform>/<task_type>/<split>.parquet # single-variant cohort
<platform>/<task_type>/<split>/<variant>.parquet # multi-variant cohort
<platform>/<task_type>/<split>/shard-NNNNN-of-NNNNN.parquet # + sharded single-variant
<platform>/<task_type>/<split>/<variant>/shard-NNNNN-of-NNNNN.parquet # + sharded multi-variant
platform∈ {desktop, mobile, web}task_typedirectory uses a hyphen where the metadata value uses a colon:grounding-action/→grounding:actionsplit∈ {train, validation} —validationis an in-distribution held-out slice (never used in training);testis reserved for out-of-distribution benchmark datasets
Stats
| platform | task_type | variant | train | validation |
|---|---|---|---|---|
| mobile | trajectory | all | 8,155 | 175 |
| mobile | understanding | all | 125,893 | 2,000 |
Image storage
Images are content-addressed by SHA-256 and deduplicated within this repo.
The images column on HuggingFace embeds raw bytes so the Hub viewer
renders thumbnails and datasets.load_dataset works out of the box.
For local workflows (SFT export, cross-dataset dedup, split rebalancing),
run reverse.py
on a cloned repo: it extracts each unique image_id once to a shared
image_store/<hash[:2]>/<hash>.<ext> and rewrites the parquets to drop
the images column, so rows reference images by hash id only. The shared
store is reusable across datasets — the same image in two repos lands in
one file.
- Total unique images: 125,131
- Store size: 92.16 GB
Notes
(none)
License & citation
See original dataset (hflqf88888/GUIOdyssey)
- Downloads last month
- 61