---
title: 'TiCAL: Typicality-Based Multimodal Emotion Recognition'
url: https://www.emergentmind.com/topics/typicality-based-consistent-aware-multimodal-emotion-recognition-tical
type: topic
---

# TiCAL: Typicality-Based Multimodal Emotion Recognition

Typicality-based Consistent-aware Multimodal Emotion Recognition (TiCAL) is a discriminative learning framework for Multimodal Emotion Recognition (MER) that systematically addresses inter-modal emotional conflicts by quantifying sample-level typicality and consistency, grounded in hyperbolic representations of emotion hierarchies. Unlike conventional MER approaches that supervise with unified emotion labels, TiCAL introduces pseudo unimodal labeling, consistency-aware weighting, and hyperbolic feature embedding, yielding improved robustness, interpretability, and recognition accuracy across benchmarks.

## 1. Problem Definition and Motivation

MER integrates information from heterogeneous modalities—textual (\(x_l\)), visual (\(x_v\)), and acoustic (\(x_a\))—to infer a unified emotion label \(y\) (\(y \in \{1, \dots, C\}\) for categorical emotion, or sentiment score in \([-3, +3]\)) [2511.15085]. Prevailing methodologies commonly assume agreement among modalities within a sample, thereby supervising training with a single label. However, real-world data frequently contain inter-modal emotional conflicts, such as disagreeing prosodic and textual cues (e.g., angry voice, happy text). TiCAL explicitly models such conflicts by assessing unimodal typicality and inter-modal consistency, facilitating learning that self-adapts to sample reliability and ambiguity.

## 2. Pseudo Unimodal Label Generation

TiCAL maintains a High-confidence Anchor Samples List (HASL) \(S_m=\{(\mathbf{f}_{m_i},y_i)\}_{i=1}^{n}\) per modality \(m \in \{l,v,a\}\), populated during initial \(\lambda\) epochs by samples predicted correctly with confidence \(u_{\hat y_i}>\theta\). New samples after epoch \(\lambda\) are assigned a pseudo unimodal label \(y_m^*\) according to the closest anchor feature in hyperbolic space:
\[
d_m = \min_{\mathbf{f}_{m_j} \in S_m} d_{\mathbb{B}}(\mathbf{f}_m, \mathbf{f}_{m_j}), \quad
y_m^* = y_{\arg\min d_m}
\]
where \(d_{\mathbb{B}}\) denotes hyperbolic distance on the Poincaré ball. These pseudo labels provide fine-grained unimodal supervision, supporting subsequent typicality and consistency estimation.

## 3. Hyperbolic Embedding and Regularization

TiCAL embeds unimodal features \(\mathbf{f}_m\) in the \(d\)-dimensional Poincaré ball \(\mathbb{B}^d = \{x: \lVert x\rVert < 1\}\), capturing hierarchical emotion relations. Key operations include Möbius addition, exponential map, and hyperbolic distance (see mathematical definitions in [2511.15085]). Feature regularization aligns embeddings to a tree-structured emotion hierarchy via the Hyperbolic Cophenetic Correlation Coefficient (HypCPCC) loss:
\[
\mathcal{L}_{\mathrm{HypCPCC}} = -\mathrm{corr}(d_{\mathbb{T}}(y_i, y_j),\,d_{\mathbb{B}}(\mathbf{f}_i, \mathbf{f}_j))
\]
with \(d_{\mathbb{T}}(y_i, y_j)\) measuring tree-path distance between emotion classes. Ablation shows Hyperbolic regularization contributes −2.07% Acc-2 drop upon removal on MOSI, highlighting its empirical necessity.

## 4. Dynamic Sample-level Typicality and Consistency Estimation

For each modality, TiCAL computes typicality \(\tau_m\) of pseudo label \(y_m^*\) as distance-normalized proximity to HASL anchors:
\[
\tau_m = \frac{\max D_m - d_m}{\max D_m - \min D_m}, \quad D_m = \{d_m\,\text{over batch}\}
\]
High \(\tau_m\) signifies anchor-consistent, "typical" samples.

Aggregate inter-modal consistency \(\kappa\) quantifies agreement and reliability as:
\[
\kappa = \sqrt{(\tau_l\,\tau_v\,\tau_a)^t\,\exp(-k\,d_{\mathrm{label}})}
\]
with
\[
d_{\mathrm{label}} = \left(\frac{ |y_l^*-\mu_{\mathrm{label}}| + |y_v^*-\mu_{\mathrm{label}}| + |y_a^*-\mu_{\mathrm{label}}| }{3}\right)^\rho,
\quad \mu_{\mathrm{label}} = \frac{y_l^* + y_v^* + y_a^*}{3}
\]
where \(t, k, \rho\) are hyperparameters. \(\kappa \in [0,1]\) weights fusion by both typicality and label agreement, with empirical ablation indicating −1.51% Acc-2 degradation upon removal.

## 5. Stage-wise Perception and Loss Formulation

TiCAL models perception via three human-inspired stages:

- **Early Perception (EP):** Fast, coarse prediction.
- **Correlative Integration (CI):** Integrated multimodal inference.
- **Advanced Cognition (AC):** Unimodal predictions refined by typicality.

Each produces respective predictions \(\hat y_{\mathrm{EP}}, \hat y_{\mathrm{CI}}, \hat y_{\mathrm{AC}}\), supervised via class-weighted cross-entropy.

Key loss functions:

- **Unbiased Unimodal AC Loss (\(\tau\)-weighting):**
  \[
  \mathcal{L}_{\mathrm{AC}} = \sum_{m\in\{l,v,a\}} \varphi(\tau_m)\,\mathcal{L}_{\mathrm{CE}}(\hat y_{\mathrm{AC}}^m, y),\quad \varphi(\tau)=\exp(1-\tau)
  \]
- **Dynamic Task Loss (\(\kappa\)-weighting):**
  \[
  \mathcal{L}_{\mathrm{task}} = \kappa\,\mathcal{L}_{\mathrm{EP}} + \mathcal{L}_{\mathrm{CI}} + (1-\kappa)\,\mathcal{L}_{\mathrm{AC}}
  \]
- **Overall Training Loss:**
  \[
  \mathcal{L}_{\mathrm{all}} = \mathcal{L}_{\mathrm{task}} - \lambda_{\mathrm{Hyp}}\,\mathcal{L}_{\mathrm{HypCPCC}}
  \]
  
The training pipeline proceeds with high-confidence HASL initialization for early epochs (\(e \leq \lambda\)), followed by dynamic pseudo labeling and consistency-weighted loss for \(e > \lambda\).

## 6. Empirical Results and Benchmarking

TiCAL demonstrates performance gains on multiple benchmark datasets:

| Dataset    | Metric     | TiCAL | Baseline | Absolute Gain |
|:-----------|:-----------|:------|:---------|:-------------|
| MOSI       | Acc-2      | 88.10%| DMD      | +2.1%        |
|            | F1         |88.09% | DMD      | +2.0%        |
|            | Acc-7      |46.79% | DMD      | +1.2%        |
| MOSEI      | Acc-2      |87.03% | DMD      |              |
|            | F1         |87.05% | DMD      |              |
|            | Acc-7      |55.23% | DMD      |              |
| MER2023    | F1         |91.56% | Emotion-LLaMA | +1.2%    |

Ablation on MOSI shows removal of:

- Typicality (\(\tau\)): −0.92% Acc-2
- Consistency (\(\kappa\)): −1.51% Acc-2
- Hyperbolic (vs. Euclidean) HASL: −0.86% Acc-2
- HypCPCC regularizer: −2.07% Acc-2

This suggests all design facets contribute cumulatively to robust recognition and conflict mitigation.

## 7. Interpretability, Implications, and Concluding Remarks

TiCAL's explicit modeling of sample-level typicality and inter-modal consistency yields dynamic adaptation to unreliable data, mitigating inter-modal conflicts pervasive in real-world MER. Hyperbolic embedding operationalizes emotion hierarchies, enhancing fine-grained discrimination. The staged fusion strategy aligns with cognitive models of human perception, producing interpretable outputs at each inference stage and offering transparent sample reliability metrics.

By integrating these mechanisms, TiCAL attains ~2.6% average gains (MOSI/MOSEI), sets SOTA F1 on MER2023, and provides diagnostic insight into both consistency and typicality [2511.15085]. A plausible implication is that further generalization to additional modalities or more complex hierarchical emotion taxonomies could extend TiCAL’s advantage in diverse affective computing scenarios.

Source: https://www.emergentmind.com/topics/typicality-based-consistent-aware-multimodal-emotion-recognition-tical