DAR (Dynamic Affective Reasoning)
收藏资源简介:
DAR是由中国科学技术大学等机构构建的首个大规模、以观众为中心的视频情感推理基准数据集,基于情感事件理论(AET)设计,旨在支持动态情感分析。该数据集包含15,087个视频和36,908个事件对齐的情感片段,标注涵盖27个细粒度情感类别,数据来源于VCE数据集并经过严格预处理。其构建采用三阶段流水线:结合语义与视觉边界的事件对齐分割、增量差分描述生成以及基于AET的流式情感推理链生成,并通过双一致性验证协议确保标注质量。该数据集主要应用于视频情感分析领域,致力于解决传统静态情感分类方法忽略的情感动态演变与因果推理问题,推动机器对连续事件驱动的情感转换进行细粒度定位与解释。
DAR is the first large-scale, viewer-centric video emotion reasoning benchmark dataset developed by the University of Science and Technology of China and other institutions. Designed based on the Affective Event Theory (AET), it aims to support dynamic emotion analysis. This dataset consists of 15,087 videos and 36,908 event-aligned emotion segments, with annotations covering 27 fine-grained emotion categories. The data is sourced from the VCE dataset and has undergone rigorous preprocessing. Its construction adopts a three-stage pipeline: event-aligned segmentation combining semantic and visual boundaries, incremental differential description generation, and streaming emotion reasoning chain generation based on AET, with a dual-consistency verification protocol employed to ensure annotation quality. This dataset is primarily applied in the field of video emotion analysis, aiming to address the issues of emotional dynamic evolution and causal reasoning overlooked by traditional static emotion classification methods, and to advance machines' fine-grained localization and interpretation of continuous event-driven emotion transitions.
数据集概述:DAR (Dynamic Affective Reasoning)
DAR 是一个以观众为中心的动态情感推理视频基准数据集,旨在解决传统视频情感数据集仅对整段视频分配单一静态标签的局限性。该数据集要求模型识别观众情绪何时发生变化、具体是何种细粒度情感,以及是什么视觉事件触发了该情感反应。
- 数据集规模: 包含 15,087 个视频,36,908 个与事件对齐的情感片段,以及 27 个情感类别。
- 标注内容: 每个情感片段包含时间跨度、情感标签以及基于视觉的因果推理说明。
- 数据来源: 原始视频来自 emodiversity 项目,使用者需遵循其许可和使用条款。
- 数据集访问: 标注文件托管在 Hugging Face Datasets 上。
- 模型权重: 在 Hugging Face 和 ModelScope 上均可获取。
- 相关论文: arXiv:2607.10238
- 所属会议: ECCV 2026
数据构建流程
数据集的构建分为三个阶段:
- 事件对齐情感分割: 使用 Gemini-2.5-Pro 提出语义事件边界;通过 PySceneDetect 检测视觉剪切点,并在 0.5 秒窗口内对齐附近边界;最后由 InternVL3.5 验证事件完整性。
- 增量差分描述生成: Qwen3-VL 在描述每个片段时,专注于相对于前一个片段的变化,且生成描述时不使用情感标签。
- 情感流推理: Qwen3-VL 使用片段描述和 Top-3 候选情感,生成排序后的情感-推理对。随后,Qwen3-Omni 和 InternVL3.5 对视觉接地、因果逻辑、观众中心性、时间一致性和答案一致性进行评判。
模型训练
该数据集对应的模型训练包含两个阶段:
- 冷启动 SFT (DAR-SFT): 在 Qwen2.5-VL-3B-Instruct 上微调,使其适应结构化的 DAR 输出格式。配置冻结视觉编码器,仅微调大语言模型和适配器,训练 0.5 个 epoch,使用 AdamW 优化器和 1e-5 的学习率。
- GRPO 训练 (DAR-R1): 从 DAR-SFT 检查点初始化,使用 GRPO 方法优化时间定位、情感预测和推理质量。训练 1 个 epoch,学习率为 2e-6。
评估与推理
使用提供的 test.py 脚本进行推理和评估:
bash python test.py --model-path /path/to/DAR-R1 --test-jsonl /path/to/DAR/test.jsonl --video-root /path/to/DAR/videos --output-jsonl /path/to/outputs/dar_r1_test_predictions.jsonl --batch-size 8
许可信息
- 该项目以 Apache License 2.0 发布。
- 原始视频受 emodiversity 及其原始来源的许可和使用条款约束。
- 上游 Qwen 和 ms-swift 组件遵循其各自的许可协议。





