metadata
pretty_name: GUI-vs-CLI A Unified Benchmark
task_categories:
- text-generation
language:
- en
size_categories:
- n<1K
GUI-vs-CLI: A Unified Benchmark
This dataset contains task descriptions and verification specifications for 440 desktop software tasks from the GUI-vs-CLI benchmark.
The Hugging Face dataset is intended for browsing and lightweight programmatic access to task descriptions. Full runnable task assets, environment files, and execution code are maintained in the GitHub repository.
Files
data/tasks.jsonl: one task per line.
Fields
Each row contains:
id: unique task identifier.app: target desktop application.task: natural-language task instruction.env: referenced runtime files and sandbox paths, when applicable.verification: verification commands and expected checks.github_task_path: path to the corresponding task directory in the GitHub repository.
Task Count
Total tasks: 440
Applications
audacity: 24chrome: 17cloudcompare: 23drawio: 15freecad: 26gimp: 19godot4: 19krita: 17libreoffice_calc: 36libreoffice_impress: 32libreoffice_writer: 39musescore3: 25obs: 18obsidian: 23renderdoc: 41shotcut: 20zoom: 20zotero: 26
Usage
from datasets import load_dataset
dataset = load_dataset("rebeccazzzz/GUI-vs-CLI-A-Unified-Benchmark", split="train")
print(dataset[0]["id"])
print(dataset[0]["task"])
Notes
This Hugging Face repository intentionally excludes binary environment assets such as spreadsheets, project files, images, and databases. Use the github_task_path field to locate the full runnable task package in the GitHub repository.