IntentQA
收藏资源简介:
IntentQA是一个专为视频意图推理设计的大规模问答数据集,由西安交通大学、北京通用人工智能研究院和北京交通大学联合创建。该数据集包含Causal Why、Causal How、Temporal Previous和Temporal Next四种问题类型,要求模型基于认知上下文(情境、对比、常识)理解人类行为背后的心理意图。数据集通过收集和标注原始视频构建,虽未明确揭示具体规模,但被描述为大规模。其应用旨在推动视频理解从表面事实识别迈向深层意图推理,解决现有模型在理解潜在心理状态方面的根本性不足。
IntentQA is a large-scale question answering dataset specifically designed for video intent reasoning, jointly created by Xi'an Jiaotong University, Beijing Academy of General Artificial Intelligence, and Beijing Jiaotong University. This dataset covers four question types: Causal Why, Causal How, Temporal Previous and Temporal Next, which require models to understand the psychological intentions behind human behaviors based on cognitive contexts (situations, contrasts and common sense). The dataset is constructed by collecting and annotating raw videos. Although its specific scale is not explicitly disclosed, it is described as large-scale. Its application aims to promote the transition of video understanding from superficial fact recognition to deep intent reasoning, and address the fundamental shortcomings of existing models in understanding underlying psychological states.
IntentQA: Context-aware Video Intent Reasoning
数据集简介
IntentQA 是一个面向视频意图推理的视频问答(VideoQA)数据集,由ICCV2023论文《IntentQA: Context-aware Video Intent Reasoning》提出。该数据集专注于意图推理这一特殊类型的推理型VideoQA任务,要求模型不仅理解视频中的视觉事实,还需对潜在变量(如实体间的空间、时间、因果关系以及心理状态等)进行逻辑推理。
数据集内容
数据集包含以下资源,需通过Google Drive下载:
- Videos:包含所有原始视频,以
video_id命名,格式为MP4。 - region_feat_n:预计算的边界框(bounding box)特征。
- frame_feat:预计算的帧特征。
- QA标注文件:包含
train.csv、val.csv、test.csv三个文件。
标注格式
标注文件的基础列格式与NExT-QA一致,并在此基础上增加了额外列:
action、lemma、lemma_id:标注当前QA中触发意图(自身或他人)的动作、动作的词元化形式及其在近义词分组后的对应ID。id、pos_id、neg_id(仅在train.csv中):id为数据行号,pos_id和neg_id分别指向训练集中与当前行构成正例和负例的数据行号。
实验结果
论文在多个模型上进行了基准测试,评价指标包括CW(因果推理)、CH(意图推理)、TP&TN(时间/计数推理)和Total(总体准确率)。关键结果如下:
| 模型 | 文本表示 | Total (%) |
|---|---|---|
| EVQA | GloVe | 27.27 |
| CoMem | GloVe | 29.52 |
| HGA | GloVe | 31.54 |
| HME | GloVe | 33.08 |
| HQGA | GloVe | 34.21 |
| CoMem | BERT | 46.77 |
| HGA | BERT | 44.61 |
| HME | BERT | 46.16 |
| HQGA | BERT | 47.66 |
| VGT | BERT | 51.27 |
| Blind GPT | BERT | 51.55 |
| Ours w/o GPT | BERT | 54.50 |
| Ours | BERT | 57.64 |
| Human | - | 78.49 |
环境安装与使用
- 安装:基于Python 3.8.8创建conda环境,克隆VGT仓库并安装依赖。
- 推理与评估:运行
./shell/intentqa_test.sh 0进行推理,使用python eval_intentqa.py --folder your_work_dir --mode test进行评估。 - 使用GPT:在测试脚本中添加
--GPT_result参数指定GPT结果文件路径。
引用信息
该数据集及代码基于VGT仓库开发,相关引用信息可在原项目页面查看。

- 1IntentQA: Intent Question Answering in Videos by Cognitive Context Reasoning西安交通大学; 北京通用人工智能研究院; 北京交通大学 · 2026年



