The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: TypeError
Message: Couldn't cast array of type
struct<change video playing setting: list<item: list<item: int64>>>
to
{'Search for a video': List(List(Value('int64')))}
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2227, in __iter__
for key, pa_table in self._iter_arrow():
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2251, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 295, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 128, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2281, in table_cast
return cast_table_to_schema(table, schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2233, in cast_table_to_schema
cast_array_to_feature(
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1804, in wrapper
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2101, in cast_array_to_feature
raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
TypeError: Couldn't cast array of type
struct<change video playing setting: list<item: list<item: int64>>>
to
{'Search for a video': List(List(Value('int64')))}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.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Dataset card for DAC-Bench
- Repository: https://github.com/melonthrower/DAC-Bench/tree/master
- Paper: https://openreview.net/forum?id=0u75PAejgs
๐ก Introduction
DAC-Becch is a benchmark designed to evaluate mobile GUI agents on long-horizon planning and complex decision-making tasks. While existing benchmarks for mobile GUI agents primarily focus on short, linear workflows, they offer limited insight into an agent's capabilities for conditional reasoning and long-term planning. DAC-Bench addresses this gap by introducing graph-structured, decision-aware tasks that systematically evaluate and advance the capabilities of modern agents in realistic scenarios.
๐ Data structure
After unzipping screenshots.zip and annotations.zip in the DAC-Becch/data directory, you will get the following directory structure
DAC-Becch
โโโ data
โ โโโ annotations ## The files obtained after unzipping "annotations.zip"
โ โ โโโ *.json ## JSON files that store instruction annotation data
โ โโโ screenshots
โ โ โโโ data_* ## The files obtained after unzipping "screenshots.zip"
โ โ โโโ *.png
In each annotated json file, the structure and meaning of each field are as follows:
- episode_id (str): The id identifying the episode
- w, h (int): The width and height of the screenshot in the episode
- device_info (dict): A dictionary containing device information
- instruction (str): The natural language instruction of the episode
- category (str): The type of the episode, it belongs to one of the types: single, and(Conjunctive), chain(Sequential), selection(Conditional), nested(Hierarchical).
- APP (list): The list of applications involved in the episode
- steps (list): A list of each step consisting of screenshots path, step-instructions, and actions
- atomic_instructions (dict): A dictionary containing each atomic actions
- seq (dict): A dictionary containing each branch sequence, only the selection and nested episodes include this item
- seq_step: the step id of branch steps, only the selection and nested episodes include this item
- instruction_cn (str): the chinese version of instruction
๐ฎ action space
the action and its parameters will be one of the format listed below.
- Click[int, int, int, int]: Click within the [x, y, m, n] area on the screen. The origin of the coordinates is at the top-left corner, with the width direction as the x-axis and the height direction as the y-axis. (x, y) and (m, n) are the coordinates of the top-left corner and the bottom-right corner of the area, respectively. The area refers to the range where the button can respond to clicks.
- long_press[int, int, int, int]: Similar to click, press and hold a certain position on the screen
- scroll[int, int , int, int]๏ผScroll operation, where the numbers correspond to the coordinates of the specified starting and ending points.
- type(str): Input text, the parameter is the text to be input.
- navigate_home: Return to the home page.
- navigate_back: Return to the last page.
- complete: the task has been completed.
- impossible: the task cannot been completed.
- wait: wait for few seconds.
Citation
If you find DAC-Becch useful in your research, please consider citing our paper:
@inproceedings{
anonymous2026dacbench,
title={{DAC}-Bench: A Decision-Aware Benchmark for Compositional Mobile {GUI} Tasks},
author={Anonymous},
booktitle={The 64th Annual Meeting of the Association for Computational Linguistics},
year={2026},
url={https://openreview.net/forum?id=0u75PAejgs}
}
- Downloads last month
- 27