ARGUS-VQA
收藏资源简介:
ARGUS-VQA是一个多模态视觉问答数据集,专注于视觉问答和图像到文本任务。它包含三个独立的子任务轨道:ARGUS-Answer(用于答案生成)、ARGUS-Reason(用于推理过程)和ARGUS-SITREP(用于态势报告)。数据以JSONL格式存储,每个样本包括稳定的样本ID、任务类型、图像相对路径列表、两轮用户/助手对话格式的监督消息对,以及包含分割、单元和问题描述符的元数据。数据集总规模在10万到100万样本之间,具体分布为:ARGUS-Answer训练集88,658行、测试集23,186行;ARGUS-Reason训练集72,747行、测试集19,026行;ARGUS-SITREP训练集6,119行、测试集1,608行。图像数据来源于Anti-UAV-RGBT媒体和轨迹资产。该数据集旨在支持视觉问答模型的训练与评估,特别是那些需要结合图像理解和文本生成的任务。在使用多个轨道时,需组合(task, sample_id)作为唯一键,因为Answer和Reason行可能共享相同的sample_id。
ARGUS-VQA is a multimodal visual question answering (VQA) dataset dedicated to visual question answering and image-to-text tasks. It comprises three independent subtask tracks: ARGUS-Answer (for answer generation), ARGUS-Reason (for reasoning process), and ARGUS-SITREP (for situation report). The dataset is stored in JSONL format, where each sample includes a stable sample ID, task type, list of relative image paths, supervised message pairs formatted as two-turn user-assistant dialogues, and metadata containing segmentation, unit, and question descriptors. The total scale of the dataset ranges from 100,000 to 1,000,000 samples, with the specific distribution as follows: the ARGUS-Answer split has 88,658 training samples and 23,186 test samples; the ARGUS-Reason split has 72,747 training samples and 19,026 test samples; the ARGUS-SITREP split has 6,119 training samples and 1,608 test samples. Image data is sourced from Anti-UAV-RGBT media and trajectory assets. This dataset is designed to support the training and evaluation of VQA models, particularly those that require the integration of image understanding and text generation. When utilizing multiple tracks, (task, sample_id) should be combined as the unique key, as samples from the ARGUS-Answer and ARGUS-Reason tracks may share the same sample ID.
ARGUS-VQA 数据集概述
- 许可证:cc-by-nc-4.0
- 任务类别:视觉问答(visual-question-answering)、图像到文本(image-to-text)
- 语言:英语(en)
- 数据集规模:100K < n < 1M(约21万条数据)
数据集结构
数据集包含三个子集(config),每个子集分为训练集(train)和测试集(test):
| 子集名称 | 说明 | 训练集行数 | 测试集行数 |
|---|---|---|---|
| ARGUS-Answer(answer) | 答案型视觉问答 | 88,658 | 23,186 |
| ARGUS-Reason(reason) | 推理型视觉问答 | 72,747 | 19,026 |
| ARGUS-SITREP(sitrep) | 态势报告 | 6,119 | 1,608 |
文件列表
- JSONL数据文件:
answer/train.jsonl、answer/test.jsonlreason/train.jsonl、reason/test.jsonlsitrep/train.jsonl、sitrep/test.jsonl
- 其他文件:
templates.jsondataset_summary.public.json(包含行数和SHA-256哈希值,用于完整性校验)
JSONL 数据模式
每行为一个Chat/SFT风格的JSON对象,包含以下字段:
- sample_id:任务轨道内的稳定样本标识符
- task:任务类型,可选值为
vqa_answer(答案)、vqa_reason(推理)、situation_report(态势报告) - images:媒体文件相对路径列表
- messages:两轮用户/助手的监督对
- metadata:紧凑的分段、单元和问题描述符
当合并多个轨道时,使用 (task, sample_id) 作为稳定主键,因为Answer和Reason轨道的样本ID可能重复。
使用说明
- 数据集与GitHub代码仓库(https://github.com/NekoPii/ARGUS-VQA)配合使用,需将本仓库下载至代码仓库的
dataset/目录下。 images字段中的路径为相对路径。默认布局下,原始Anti-UAV-RGBT媒体文件位于source_data/Anti-UAV-RGBT/,轨迹资产使用顶级trajectory/*.jpg路径。




