TIC-VLA
收藏资源简介:
TIC-VLA是一个大规模推理标注数据集,专为动态环境中的机器人导航而设计。该数据集整合了视觉观察、语言指令和时间上下文,用于训练和评估能够联合理解这些信息以预测导航动作的机器人导航模型。数据集来源于三个机器人导航数据源:SCAND、GND和DynaNav,其中SCAND和GND为现有公开数据集,DynaNav为本项目新收集的数据集。数据内容包括机器人轨迹、RGB图像序列、同步机器人动作、分割的20秒导航片段、自然语言导航指令以及链式思维(CoT)推理标注。数据集结构分为两部分:原始轨迹数据(*_data)包含连续轨迹的RGB图像和同步CSV文件(记录时间戳、机器人状态和控制动作);分割导航片段标注(*_json)包含帧级JSON文件(描述单个预测时间步,聚合当前观察、历史观察、未来监督及标注引用)、指令文件(提供20秒片段的自然语言导航指令,支持不同表达方式)和CoT文件(提供与预测时间步对应的帧级推理链)。数据集采用模块化设计,通过相对路径引用图像和标注文件,减少存储冗余。适用于机器人导航、视觉-语言-动作建模、时序推理等任务。
TIC-VLA is a large-scale reasoning annotation dataset designed for robot navigation in dynamic environments. It integrates visual observations, language instructions, and temporal context to train and evaluate robot navigation models that can jointly understand this information to predict navigation actions. The dataset is sourced from three robot navigation data sources: SCAND, GND, and DynaNav, where SCAND and GND are existing public datasets, and DynaNav is newly collected for this project. The data includes robot trajectories, RGB image sequences, synchronized robot actions, segmented 20-second navigation clips, natural language navigation instructions, and chain-of-thought (CoT) reasoning annotations. The dataset structure is divided into two parts: raw trajectory data (*_data) contains continuous trajectory RGB images and synchronized CSV files (recording timestamps, robot states, and control actions); segmented navigation clip annotations (*_json) include frame-level JSON files (describing a single prediction time step, aggregating current observations, historical observations, future supervision, and annotation references), instruction files (providing natural language navigation instructions for 20-second clips, supporting different expressions), and CoT files (providing frame-level reasoning chains corresponding to prediction time steps). The dataset uses a modular design, referencing images and annotation files via relative paths to reduce storage redundancy. It is suitable for tasks such as robot navigation, vision-language-action modeling, and temporal reasoning.
数据集概述
TIC-VLA (Think-in-Control Vision-Language-Action) 是一个大规模、带推理标注的数据集,专为动态环境中的机器人导航任务设计,用于训练和评估能够结合视觉观察、语言指令与时间上下文来预测导航动作的推理型模型。
数据来源
数据集由以下三个机器人导航数据源构建而成:
- SCAND
- GND
- DynaNav(由 TIC-VLA 项目新采集并标注的数据集)
数据内容
对于每个数据源,提供以下信息:
- 机器人轨迹
- RGB图像序列
- 同步的机器人动作
- 20秒分段导航片段
- 自然语言导航指令
- 链式推理(Chain-of-Thought, CoT)标注
数据结构
TIC-VLA/ ├── SCAND/ │ ├── SCAND_data/ │ └── SCAND_json/ ├── GND/ │ ├── GND_data/ │ └── GND_json/ └── DynaNav/ ├── DynaNav_data/ └── DynaNav_json/
每个基准数据集包含两个部分:
*_data:原始记录的机器人轨迹数据*_json:20秒分段导航片段的标注,包括帧级 JSON 文件、语言指令和链式推理
原始轨迹数据 (*_data)
每条记录对应一个连续的机器人轨迹。目录结构示例:
SCAND_data/ A_Jackal_AHG_Library_Thu_Nov_4_16/ ├── rgb/ │ ├── img_1636060137.589061.jpg │ ├── img_1636060137.689793.jpg │ └── ... └── sync.csv
rgb/:包含导航轨迹中捕获的 RGB 图像sync.csv:包含每帧图像对应的同步机器人信息(时间戳、状态、控制动作)
分段导航片段标注 (*_json)
每条连续轨迹被分割为重叠的 20秒导航片段。目录包含三类文件:
SCAND_json/ ├── img_1636060137.589061.json ├── img_1636060137.689793.json ├── ... ├── instruction_690875.txt ├── instruction_691210.txt ├── ... ├── cot_690875.txt ├── cot_691210.txt ├── ...
- 帧 JSON 文件 (
img_*.json):描述单个预测时间步 - 指令文件 (
instruction_*.txt):包含对应 20秒导航片段的自然语言导航指令,不同指令文件可能用不同措辞表达相似导航目标 - CoT 文件 (
cot_*.txt):包含对应预测时间步的帧级链式推理
这种设计避免了在每个 JSON 文件中重复存储长文本,同时允许标注被共享或独立更新。
示例 JSON 结构
json { "timestamp": 2.10, "original_timestamp": 1636060139.7, "instruction_file": "instruction_690875.txt", "current": { "img": "../../SCAND_data/A_Jackal_AHG_Library_Thu_Nov_4_16/rgb/img_1636060139.690875.jpg", "orientation": [...] }, "history": [...], "future": [...], "cot": "cot_690875.txt" }
history:包含从当前 20秒片段开始到当前时间步的所有历史观测,以 0.1秒间隔采样,每个历史条目包含相对于该历史时间步前 1秒的自车坐标系的局部轨迹future:包含相对于当前时间步自车坐标系的未来轨迹监督,确保所有预测时间步(包括最后一帧)都有未来监督- 每个 JSON 文件代表 20秒导航片段内的一个预测时间步,汇总了训练所需的时序上下文(当前观测、历史观测、未来监督、指令和 CoT 标注引用)
数据集通过相对路径引用 RGB 图像、指令文件和 CoT 文件,避免图像和文本标注的重复存储,降低冗余并保持模块化。
许可协议
- cc-by-4.0
引用
若在研究中使用了 TIC-VLA,请引用:
bibtex @inproceedings{huang2026ticvla, title = {TIC-VLA: Think-in-Control Vision-Language-Action for Robot Navigation in Dynamic Environments}, author = {Zhiyu Huang and Yun Zhang and Johnson Liu and Rui Song and Chen Tang and Jiaqi Ma}, booktitle = {Proceedings of the International Conference on Machine Learning (ICML)}, year = {2026} }




