Datasets:
The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
pa_table = paj.read_json(
io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
)
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
return check_status(status)
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
raise convert_status(status)
pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to string in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 101, in _split_generators
pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
examples = [ujson_loads(line) for line in original_batch.splitlines()]
~~~~~~~~~~~^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
ValueError: Expected object or value
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
VG-GUI-Bench
Video-Guided GUI Agent Benchmark — the benchmark contribution of our ECCV 2026 paper Bridging VideoQA and Video-Guided Agentic Tasks via Generalized Keyframe Extraction.
Authors. Sunqi Fan, Qingle Liu, Runqi Yin, Meng-Hao Guo, Shuojin Yang (Tsinghua University).
What is VG-GUI-Bench?
Recent Multimodal Large Language Models (MLLMs) achieve strong results on Video Question Answering (VideoQA), but existing benchmarks mostly probe shallow visual perception and rarely test whether a model can learn a procedure from a tutorial video and carry it out as a long-horizon interactive task. VG-GUI-Bench closes this gap.
Given a YouTube tutorial video that demonstrates how to accomplish a task on a mobile device (e.g. "How To Change Discord Password"), a GUI agent must:
- Understand the workflow from reference frames drawn from the tutorial video (scene keyframes, uniform samples, annotated frames, or algorithmically searched keyframes);
- Localize the current progress from its previous action history and the current screen; and
- Predict the exact next action — one of
CLICK,SCROLL,TYPE,PRESS,ZOOM,FINISH— on the current screen.
This makes VG-GUI-Bench a testbed for video in-context learning: transferring procedural knowledge from an instructional video to grounded, step-by-step decision making.
This dataset is a processed and re-annotated version built on top of the MONDAY dataset, curated and packaged for the video-guided GUI agent evaluation described in the paper.
Dataset Statistics
| Item | Value |
|---|---|
| Episodes (tutorial videos / tasks) | 100 |
| Total annotated steps | 1,071 |
| Average steps per episode | 10.7 |
| Source videos | 98 mobile-app tutorial videos (YouTube) |
| Reference-frame variants per episode | 8 (see below) |
| Total size | ~3 GB |
Action type distribution
action_type_id |
action_type_text |
Count |
|---|---|---|
| 4 | click |
1,934 |
| 4 | scroll down |
175 |
| 4 | scroll up |
27 |
| 4 | scroll right |
13 |
| 4 | scroll left |
12 |
| 3 | type |
50 |
| 6 | press home |
39 |
| 5 | press back |
36 |
| 12 | zoom or multi-touch |
12 |
| 14 | other hardware |
11 |
Repository Layout
VG-GUI-Bench/
├── ours_data.json # Step-level action annotations (main label file)
├── ytb_video/ # Source tutorial videos, one .mp4 per episode (keyed by ep_id)
│ ├── 07hF8RAFgIc.mp4
│ └── ...
└── images/ # Pre-rendered frames, per reference mode → per episode → frames
├── origin/ # Scene-timestamp keyframes (cropped to phone screen)
├── origin_no_cut/ # Scene-timestamp keyframes (full frame)
├── annotation/ # Frames with a red bounding box on the target (cropped)
├── annotation_no_cut/ # Frames with a red bounding box on the target (full frame)
├── uniform_5/ # 5 uniformly sampled frames (cropped)
├── uniform_5_no_cut/ # 5 uniformly sampled frames (full frame)
├── uniform_10/ # 10 uniformly sampled frames (cropped)
└── uniform_10_no_cut/ # 10 uniformly sampled frames (full frame)
Inside every images/<mode>/ directory the frames are grouped by episode id, e.g.
images/origin/07hF8RAFgIc/frame_0000.png, frame_0001.png, …
Data Schema
ours_data.json is a single JSON object with one key, "ours", whose value is a list of 100
episodes. Each episode is a list of steps, and each step has the following fields:
| Field | Type | Description |
|---|---|---|
ep_id |
str |
YouTube video id; also the key linking to ytb_video/<ep_id>.mp4 and images/<mode>/<ep_id>/. |
goal |
str |
Natural-language task goal (the tutorial video title). |
img_filename |
str |
Relative frame path without extension, "<ep_id>/frame_XXXX"; the current screen for this step. |
action_list |
list[Action] |
One or more ground-truth action candidates for this step (see below). |
Each Action object:
| Field | Type | Description |
|---|---|---|
action_type_id |
int |
Numeric action type (see the distribution table above). |
action_type_text |
str |
Human-readable action type, e.g. click, scroll down, type, press back, press home, zoom or multi-touch. |
annot_position |
list[float] |
Normalized bounding box(es) of the target UI element, as a flat list of [x, y, w, h] quadruples (0.0–1.0). Multiple quadruples may be concatenated when several equivalent targets are annotated. |
touch |
[float, float] |
Normalized (x, y) gesture start point (0.0–1.0). |
lift |
[float, float] |
Normalized (x, y) gesture end point (0.0–1.0). For click this equals touch; for scrolls it differs. |
type_text |
str |
The text to enter for type actions; empty string otherwise. |
All coordinates are normalized to [0, 1] relative to the screen width/height.
Minimal example
{
"ep_id": "SIjOxM9jVj8",
"goal": "How To Change Discord Password 2021 | Discord Mobile App",
"img_filename": "SIjOxM9jVj8/frame_0000",
"action_list": [
{
"action_type_id": 4,
"action_type_text": "click",
"annot_position": [0.862, 0.079, 0.062, 0.116],
"touch": [0.137, 0.893],
"lift": [0.137, 0.893],
"type_text": ""
}
]
}
Reference-Frame Modes
The benchmark studies how different visual-context strategies affect agent performance. The pre-rendered
images/ directories cover 8 of these modes (origin, annotation, uniform_5, uniform_10, each
in cut / no_cut variants). The evaluation code additionally supports algorithmic keyframe-search modes
(tasker, bfs, gbfs, dijkstra) and video-agent modes (videoagent, videotree), which are produced
on demand from the source videos — see the code repository.
Usage
import json
from huggingface_hub import snapshot_download
local_dir = snapshot_download(repo_id="Aoraku/VG-GUI-Bench", repo_type="dataset")
data = json.load(open(f"{local_dir}/ours_data.json"))["ours"]
print(len(data), "episodes")
for step in data[0]: # iterate over one episode
print(step["img_filename"], step["action_list"][0]["action_type_text"])
For the full data-processing pipeline, reference-mode generation, and the four evaluation metrics
(Accuracy, Completion, Efficiency, PIR), see the official code:
https://github.com/VG-GUI-TASKER/VG-GUI-TASKER (VG-GUI-Bench/).
License
Released under the MIT License. The underlying videos remain the property of their respective YouTube uploaders and are provided for research use only.
Citation
@inproceedings{fan2026bridging,
title = {Bridging VideoQA and Video-Guided Agentic Tasks via Generalized Keyframe Extraction},
author = {Fan, Sunqi and Liu, Qingle and Yin, Runqi and Guo, Meng-Hao and Yang, Shuojin},
booktitle = {European Conference on Computer Vision (ECCV)},
year = {2026}
}
Acknowledgements
Built on top of the MONDAY dataset. We thank its authors for releasing the original data.
- Downloads last month
- -