GAViD & CAGNet: Decoding Collective Emotions through MLLM-Enhanced Context

GAViD: A Large-Scale Multimodal Dataset for Context-Aware Group Affect Recognition from Videos

Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces GAViD, a large-scale multimodal dataset for Group Affect Recognition (GAR) featuring 5,091 video clips with aligned audio and MLLM-generated context metadata. It also proposes CAGNet, a cross-attention gated network that achieves a state-of-the-art 63.20% accuracy in valence classification by effectively fusing visual, acoustic, and textual modalities.

TL;DR

Understanding the "vibe" of a group is exponentially harder than reading a single face. This paper introduces GAViD, the most comprehensive video dataset for Group Affect Recognition (GAR) to date, enriched with metadata generated by Video-ChatGPT. Alongside the data, the authors present CAGNet, a model that uses cross-attention and gated fusion to prove that knowing where a group is (context) is just as important as how they look.

Perception Gaps in Group Affect

Traditional Group Affect Recognition (GAR) faces an "identity crisis" in the wild. While individual emotion recognition is mature, collective affect is shaped by:

  1. Environmental Complexity: Poor lighting and occlusions make face-only detection (a staple of prior SOTA) fail.
  2. Contextual Ambiguity: Is a group shouting because they are angry or because they are at a concert? Without scene metadata (e.g., "protest" vs. "party"), models often flip a coin.
  3. Data Scarcity: Most existing datasets (like VGAF or GECV) offer only ternary valence (Positive/Negative/Neutral) but lack discrete emotion labels (Happy/Sad/Fear) and high-level scene descriptions.

Methodology: The Power of Three (V+A+C)

The authors bridge this gap with a tri-modal approach: Vision (V), Audio (A), and Context (C).

1. The GAViD Dataset

The GAViD dataset (5,091 clips) isn't just bigger; it's smarter. By using Video-ChatGPT, the authors extracted detailed narratives for each scene. Human annotators then audited these descriptions and added action cues (e.g., "smiling," "clapping").

2. CAGNet Architecture

Unlike models that simply concatenate features, CAGNet employs a sophisticated alignment and gating strategy:

  • Modality-Specific Encoding: Uses DINOv2 (Vision), Wav2Vec 2.0 (Audio), and XLM-RoBERTa (Context).
  • Cross-Modal Alignment: Three cross-attention blocks allow each modality to "query" others. For instance, if the video is blurry, the model can look to the audio or text for clarity.
  • Gated Fusion: A Squeeze-and-Excitation (SE) gate dynamically weights the importance of each modality based on the input.

CAGNet Architecture

Experimental Results: Context is King

The results reveal a clear hierarchy in modality effectiveness. While trilateral fusion (V+A+C) is the winner, the combination of Visual + Context performed remarkably well, often outperforming Visual + Audio.

ModelModalityTest AccTest F1
LLaVA-NeXTV+A54.82%0.388
CAGNet (Ours)V+A+C63.20%0.614

Performance Comparison

Key Insight: Handling Subtle Emotions

The qualitative analysis highlights that for "hostile" or "cooperative" interactions that look visually similar, the textual context (e.g., "a scene in an office where the boss is scolding his employee") acts as the tie-breaker that corrects the prediction.

Critical Analysis & Future Outlook

The introduction of GAViD marks a shift from Global Visual Features to Semantic Understanding in affective computing.

Strengths:

  • MLLM Integration: Successfully demonstrates how generative AI can be used to "upcycle" raw video into feature-rich datasets.
  • Robustness: CAGNet's "Modality Dropout" training ensures the model remains functional even if audio or text is missing at inference.

Limitations:

  • The dataset still shows a heavy imbalance toward "Happy" and "Neutral" states, a common hurdle in "in-the-wild" data collection.
  • The context is currently static (a single description per clip); future work could explore dynamic, frame-level context updates.

Conclusion

GAViD and CAGNet prove that to understand how we feel together, AI needs to understand the story we are in. By fusing MLLM-generated metadata with audio-visual cues, this research sets a new benchmark for computational social systems and human-computer interaction.

Find Similar Papers

Try Our Examples

  • Search for recent papers that utilize Multimodal Large Language Models (MLLMs) to provide zero-shot contextual labeling for affective computing datasets.
  • Which original studies introduced the use of Squeeze-and-Excitation (SE) blocks for cross-modal fusion, and how does CAGNet's implementation differ for temporal video data?
  • Find research applying group affect recognition techniques to real-time public safety monitoring or educational engagement analysis in uncontrolled environments.
Contents
GAViD & CAGNet: Decoding Collective Emotions through MLLM-Enhanced Context
1. TL;DR
2. Perception Gaps in Group Affect
3. Methodology: The Power of Three (V+A+C)
3.1. 1. The GAViD Dataset
3.2. 2. CAGNet Architecture
4. Experimental Results: Context is King
4.1. Key Insight: Handling Subtle Emotions
5. Critical Analysis & Future Outlook
6. Conclusion