[ICASSP] MEMI: Breaking the One-to-One Constraint in Multimodal Speaker Personality Recognition

Speaker Personality Recognition with Multimodal Explicit Many2many Interactions

2024-10-01
Liangqing Wu, Dong Zhang, Qiyuan Liu, Shoushan Li, Zhou Guodong
Summary
Problem
Method
Results
Takeaways
Abstract

The paper proposes MEMI (Multimodal Explicit Many2Many Interactions), a framework for speaker personality recognition in face-to-face monologues. By leveraging Bi-LSTM encoding and an explicit Many-to-Many attention mechanism, the model achieves new SOTA performance across 12 personality traits on the POM dataset.

TL;DR

Understanding someone’s personality from a video is a complex task where timing is everything—but not always in a synchronized way. This paper introduces MEMI (Multimodal Explicit Many-to-Many Interactions), a model that allows text, audio, and video features to interact across any time step. By moving away from rigid "one-to-one" time-step alignment, the researchers achieved significant performance gains across 12 distinct personality traits.

Problem & Motivation: The "Joke" Dilemma

In human communication, a serious face might precede a burst of laughter, or a gentle tone might contrast with a harsh word five seconds later. Traditional models typically use implicit one-to-one interactions, where features from different modalities are fused only at the exact same timestamp ().

This approach has two fatal flaws:

  1. Implicit Propagation: Information is buried in the hidden states of uni-directional LSTMs, making it hard to maintain long-range dependencies in videos that can exceed 600 words.
  2. Temporal Rigidity: It ignores interactions between a gesture at time and a word at , which are often crucial for identifying traits like "Humorous" or "Nervous."

Comparison of Interaction Schemes Fig 1. Traditional implicit one-to-one vs. the proposed explicit many-to-many architecture.

Methodology: The Core Architecture

The proposed MEMI framework follows a structured pipeline of extraction, encoding, and explicit interaction:

1. Feature Extraction & Encoding

The model extracts manual transcripts (GloVe), visual cues (Action Units, Gaze), and acoustic features (COVAREP). Unlike previous works, it uses a Bi-directional LSTM (Bi-LSTM) to encode these sequences, ensuring that the model "sees" the entire context of the monologue from both directions, preventing information decay.

2. Explicit Many-to-Many Attention

The engine of MEMIs is its attention mechanism. Instead of simple concatenation, the model calculates:

  • Intra-modal interactions: How the beginning of a sentence relates to its end.
  • Bi-modal interactions: How text relates to visual sequences across all time steps ().
  • Tri-modal interactions: Complex relationships where one modality (e.g., Text) interacts with a pre-fused representation of two others (Vision + Audio).

Attention Mechanisms Fig 2. Detail of explicit uni-modality, bi-modality, and tri-modality interactions.

3. Dual-Level Pooling

To handle the high dimensionality of these interactions, the authors use non-linear max-pooling at two stages:

  • Word-level: To capture the most salient "moments" in the sequence.
  • Modality-level: To distill the final representation for the final classification/regression layer.

Experiments & Results

The model was tested on the POM (Persuasive Opinion Multimedia) corpus, evaluating 12 traits (e.g., Confident, Passionate, Dominant).

SOTA Comparison

MEMI consistently outperformed strong baselines like MARN (Multi-attention Recurrent Network) and TFN (Tensor Fusion Network).

  • Accuracy: For "Vividness," accuracy improved by nearly 10% absolute compared to MARN.
  • Correlation: The Pearson correlation coefficient () showed massive improvements, particularly in "Expertise" and "Humorous," where previous models often struggled with near-zero or negative correlations.

Experimental Results Table 1. Performance across 12 traits using Accuracy, Mean Absolute Error (MAE), and Correlation (r).

Critical Insight: Why Does It Work?

The success of MEMI suggests that personality is a global trait, not a local one. Unlike speech recognition—where a sound must map to a specific letter at a specific time—personality is perceived through the accumulation and contrast of signals over time. By allowing the "seriousness" of a face at the start of a video to interact with the "punchline" at the end, MEMI captures the Inductive Bias necessary for social signal processing.

Conclusion & Future Work

MEMI provides a robust framework for multimodal interaction that prioritizes explicit cross-temporal relationships. While highly effective, the authors note that future versions should incorporate metadata (age, gender, location) to further refine these personality profiles. As AI moves closer to empathetic human-computer interaction, models that can "connect the dots" across time and modality will be essential.

Find Similar Papers

Try Our Examples

  • Search for recent papers that utilize Transformers instead of Bi-LSTMs for Many-to-Many cross-modal interaction in personality recognition.
  • Which paper first introduced the POM (Persuasive Opinion Multimedia) dataset, and what were the original baseline features used?
  • Explore how explicit Many-to-Many interaction mechanisms are being applied to multimodal tasks involving longer sequences, such as full-length movie analysis or multi-party meetings.
Contents
[ICASSP] MEMI: Breaking the One-to-One Constraint in Multimodal Speaker Personality Recognition
1. TL;DR
2. Problem & Motivation: The "Joke" Dilemma
3. Methodology: The Core Architecture
3.1. 1. Feature Extraction & Encoding
3.2. 2. Explicit Many-to-Many Attention
3.3. 3. Dual-Level Pooling
4. Experiments & Results
4.1. SOTA Comparison
5. Critical Insight: Why Does It Work?
6. Conclusion & Future Work