trace2action-10k-ground-cot
收藏资源简介:
Trace2Action 10K是一个用于微调和评估直接通过动作操作图形用户界面(GUI)的多模态智能体的大规模计算机使用数据集。该数据集通过真实的桌面交互记录收集而成,包含同步的屏幕视频、点击活动和键盘事件,为研究计算机使用智能体提供了基于真实人类行为的直接动作监督机会。数据集包含13个结构化字段,如任务唯一标识符、应用程序平台名称、自然语言任务目标等,并支持8种动作类型,包括点击、右键点击、双击、拖拽、滚动、按键、热键和输入文本。数据规模方面,训练集有8599个样本,测试集有2355个样本,总数据量约2.86GB,涵盖多个应用程序平台。该数据集适用于训练和评估能够理解自然语言指令、观察屏幕状态并执行具体GUI操作的多模态智能体,在自动化办公、软件操作辅助等场景具有应用价值。
Trace2Action 10K is a large-scale computer usage dataset for fine-tuning and evaluating multimodal agents that directly operate graphical user interfaces (GUIs) through actions. The dataset is collected from real desktop interaction recordings, including synchronized screen videos, click activities, and keyboard events, providing direct action supervision opportunities based on real human behavior for researching computer usage agents. It contains 13 structured fields, such as task unique identifier, application platform name, natural language task objective, etc., and supports 8 action types, including CLICK, RIGHT_CLICK, DOUBLE_CLICK, DRAG_TO, SCROLL, PRESS, HOTKEY, and TYPE. In terms of data scale, the training set includes 8599 samples, the test set includes 2355 samples, with a total data volume of approximately 2.86GB, covering multiple application platforms. The dataset is suitable for training and evaluating multimodal agents that can understand natural language instructions, observe screen states, and perform specific GUI operations, with application value in scenarios such as automated office work and software operation assistance.
数据集概述:Trace2Action 10K Dataset
Trace2Action 是一个大规模计算机操作数据集,用于微调和评估直接通过动作操作图形用户界面(GUI)的多模态代理。该数据集基于真实的桌面交互记录,同步录制了屏幕视频、点击活动和键盘事件,为研究基于真实人类行为的直接动作监督的计算机操作代理提供了机会。
数据集结构
数据集包含以下字段,每个字段对应一个轨迹(trajectory)中的单一步骤:
| 字段 | 类型 | 描述 |
|---|---|---|
task_id |
string | 唯一的轨迹标识符 |
platform |
string | 应用平台名称 |
instruction |
string | 自然语言的任务目标 |
step_index |
int32 | 轨迹内的时间步索引 |
image |
Image | 当前状态对应的屏幕截图 |
code |
string | 可执行的地面真实UI动作代码 |
action |
string | JSON格式的动作描述 |
groundcua |
json | JSON格式的边界框列表 |
action_history |
json | JSON格式的动作历史 |
observation |
string | 结构化状态解释 |
thought |
string | 中间推理过程 |
action_description |
string | 自然语言动作描述 |
reflection |
string | 回顾性程序反思 |
动作空间
动作以 JSON 格式定义,支持以下类型:
{"type": "CLICK", "x": [0, 100], "y": [0, 100] }:单击{"type": "RIGHT_CLICK", "x": [0, 100], "y": [0, 100]}:右击{"type": "DOUBLE_CLICK", "x": [0, 100], "y": [0, 100]}:双击{"type": "DRAG_TO", "x": [0, 100], "y": [0, 100]}:拖动到指定位置{"type": "SCROLL", "amount": <int>}:滚动{"type": "PRESS", "key": "<str>"}:按键{"type": "HOTKEY", "keys": ["<str>", "<str>"]}:快捷键组合{"type": "TYPE", "text": "<str>"}:输入文本
数据集划分与规模
| 划分 | 样本数 | 字节数 |
|---|---|---|
| 训练集 | 8,599 | 2,270,463,289 |
| 测试集 | 2,355 | 590,129,663 |
| 总计 | 10,954 | 2,860,592,952 |
应用覆盖
数据集涵盖多个桌面应用程序,按用途分为训练集和测试集:
- 训练集(20个应用):7-Zip、Affine、Atom、Anki、Bash、Blender、Chromium、Element、Eclipse、FreeCAD、GIMP、Inkscape、IntelliJ IDEA、LibreOffice Calc、LibreOffice Draw、LibreOffice Writer、Mastodon、Nextcloud、OnlyOffice Calendar、OnlyOffice Presentation。
- 测试集(4个应用):Gedit、LibreOffice Impress、Matrix、OBS Studio。
加载方式
可使用 Hugging Face datasets 库加载:
python from datasets import load_dataset ds = load_dataset("dyfang/trace2action-10k-ground-cot")




