---
title: 'EMERT: Eye-Behavior-Aided MER Transformer'
url: https://www.emergentmind.com/topics/eye-behavior-aided-mer-transformer-emert
type: topic
---

# EMERT: Eye-Behavior-Aided MER Transformer

The Eye-behavior-aided MER Transformer (EMERT) is a multimodal emotion recognition architecture designed to explicitly bridge the gap between facial expression recognition (FER) and true emotion recognition (ER) through the integration and adversarial fusion of facial and eye behavior modalities. Developed alongside the Eye-behavior-aided Multimodal Emotion Recognition (EMER) dataset, EMERT leverages modality-adversarial feature decoupling and a multitask Transformer to achieve superior performance on a range of ER and FER benchmarks by modeling eye movement and fixation patterns as critical affective signals, thereby complementing information found in facial expressions [2512.16485].

## 1. EMER Dataset and Multimodal Annotation

The EMER dataset provides the empirical foundation for EMERT by systematically pairing facial expression videos, eye movement sequences, and eye fixation maps under conditions designed to elicit spontaneous and genuine emotions.

- **Stimulus-Induced Paradigm:** 28 video clips, each carefully chosen by emotion experts from an initial pool of 115, spanning Ekman’s six basic emotions plus neutral, induce target affective states in 121 participants under controlled laboratory conditions.
- **Multimodal Data:** Simultaneous collection of 30 fps facial videos (390,900 frames), high-frequency (120 Hz) Tobii Pro Fusion eye movement sequences (1.91M samples), and frame-level eye fixation heatmaps (7.5 GB).
- **Annotation Protocol:**
  - **ER Labels:** Participant self-report via the Self-Assessment Manikin (SAM), producing 3-class (positive/negative/neutral), 7-class (emotion categories), and continuous valence/arousal labels in [–1,1].
  - **FER Labels:** Active-Learning Annotation (ALA): Pretrained EmotiEffNet weak supervision, expert correction for disagreements, followed by EM-derived reliability weighting and consensus voting for high-fidelity facial expression annotation (Cronbach’s α > 0.97 for discrete categories). Expression intensity labels in {0,1,2,3} are included.
- **Significance:** This dual-labeling strategy enables explicit measurement of the divergences (the “emotion gap”) between FER and ER, as well as their differential relationships to eye behaviors [2512.16485, Fig. 7].

## 2. EMERT Model Architecture

The EMERT pipeline is characterized by dedicated feature extraction from each modality, adversarial feature decoupling to isolate shared vs. modality-specific components, and a multitask Transformer-based fusion mechanism.

- **Multimodal Feature Extraction (MFE):**
  - Video frames: ResNet-50 backbone yields $H_v \in \mathbb{R}^{T_v \times S}$.
  - Eye movements: 2-layer LSTM encodes sequential gaze data to $H_e \in \mathbb{R}^{T_e \times S}$.
  - Eye fixations: 2-layer LSTM processes heatmaps to $H_g \in \mathbb{R}^{T_g \times S}$.
- **Modality-Adversarial Feature Decoupling (MAFD):**
  - Shared “emotion-generic” features: $F_C^m = \mathrm{MLP}_c(H_m)$ for $m \in \{v,e,g\}$.
  - Modality-specific features: Unique MLP per modality, e.g., $F_P^v = \mathrm{MLP}_v(H_v)$.
  - Modality discriminator $D$: Trained via a gradient reversal layer with adversarial loss to maximize feature invariance.
- **Emotion-Sensitive Multi-Task Transformer (EMT):**
  - Query: Concatenated emotion-generic features $F_C = [F_C^v; F_C^e; F_C^g]$.
  - Keys/Values: Modality-unique features $F_P = [F_P^v; F_P^e; F_P^g]$.
  - Standard Transformer encoder with 4 layers ($d=512$, 8 heads, FFN hidden size 2048), yielding fused affective representations $X_{\mathrm{fu}}$.
- **Task Heads:** Two dedicated heads for ER ($\hat{e}_j$) and FER ($\hat{f}_j$), each as a 2-layer MLP.

## 3. Mathematical Formulation

EMERT’s pipeline is formalized as follows:

- **Input Embeddings & Positional Encodings**
  $$
  E_v = \mathbf{x}_v W_e + P_v, \quad E_e = \mathbf{x}_e W_e + P_e, \quad E_g = \mathbf{x}_g W_e + P_g
  $$
- **Adversarial Loss**
  $$
  \mathcal{L}_\mathrm{adv} = -\frac{1}{N_b} \sum_{j=1}^{N_b} \sum_{m \in \{v,e,g\}} \mathbb{I}\{m_j = m\} \ln D_m(F_C^j)
  $$
  and minimized as $\min_{\theta_D} \max_{\theta_{\mathrm{MLP}_c}} \mathcal{L}_{\mathrm{adv}}$.
- **Classification and Regression Losses**
  $$
  \mathcal{L}_\mathrm{cls}(y, \hat{y}) = -\sum_{c=1}^{C} y_c \ln \hat{y}_c, \quad
  \mathcal{L}_\mathrm{reg}(y, \hat{y}) = 
  \begin{cases}
    \frac{1}{2}(y - \hat{y})^2, & |y - \hat{y}| \leq \delta \\
    \delta (|y - \hat{y}| - \frac{1}{2}\delta), & \text{otherwise}
  \end{cases}
  $$
- **Total Objective**
  $$
  \mathcal{L}_\mathrm{total} = \lambda_\mathrm{adv} \mathcal{L}_\mathrm{adv} + \lambda_\mathrm{cls}\,(\mathcal{L}_\mathrm{cls}^e + \mathcal{L}_\mathrm{cls}^f)
  $$
  with $\lambda_\mathrm{adv} = 0.3$, $\lambda_\mathrm{cls} = 0.1$.

## 4. Training Protocols and Experimental Setup

EMERT is optimized using AdamW with an initial learning rate of $1 \times 10^{-4}$ and cosine decay, batch size 16, over approximately 100 epochs. Each training sample comprises 8 video frames, 32 eye timestamps, and 32 fixation maps; only random temporal cropping is employed for augmentation, and dropout of 0.1 is applied within the Transformer.

Seven distinct evaluation protocols are implemented:

- 3-/7-class ER and FER classification with weighted and unweighted accuracy rates (WAR, UAR, F1).
- Valence/arousal regression (MAE, MSE, RMSE) for both ER and FER.
- Expression intensity regression for FER.
- Modality ablations (F: facial; E: eye movement; G: gaze/fixation; all combinations).
- Robustness to Gaussian noise ($\sigma^2=\{0.01,0.05,0.1\}$).
- Annotation consistency (Cronbach’s α).
- Cross-dataset generalization onto SIMS [2512.16485; Tables II–V, VII–X].

## 5. Performance and Ablation Analyses

EMERT consistently outperforms state-of-the-art multimodal baselines (Self_MM, MulT, LMF, TMT, NORM-TR) across all core tasks.

| Task / Metric           | EMERT (Best)        | Best Baseline      | Improvement         |
|-------------------------|---------------------|--------------------|---------------------|
| 7-class ER (WAR/UAR/F1) | 33.92 / 28.17 / 30.38| up to 32.63 / 28.17 / 29.50| 0.2–2.0 points      |
| 7-class FER (WAR/UAR/F1)| 51.18 / 33.04 / 43.33| 50.80 / 32.63 / 43.32| up to 0.38 points   |
| FER Intensity (MAE/MSE) | 0.660 / 0.673       | 0.666 / 0.685      | –0.006 / –0.012      |
| Cross-dataset (SIMS, Acc-5)| up to +23.0% over MulT | –            | +23.0              |

- **Modality Complementarity:** The addition of eye movement features increases WAR by 1.3–3.2 over face-only baselines.
- **Module Ablation:** Removing MAFD or EMT each reduces performance by 1.8–2.3% WAR; full EMERT yields an aggregate +2.7%.
- **Multi-tasking Synergy:** Simultaneous ER/FER objectives provide mutual regularization, improving both task-specific scores (ER head boosts FER WAR +0.37%; FER head improves ER UAR +5.9%).
- **Annotation Consistency:** Cronbach’s α > 0.97 for categorical labels.
- **Noise Robustness:** EMERT demonstrates higher resilience to Gaussian noise than benchmarks.

## 6. Theoretical Motivation and Insights

The design of EMERT is motivated by fundamental psychological findings and empirical observations:

- Facial expressions are frequently used as social displays, not necessarily correlating with genuine emotional state, contributing to the “emotion gap” between FER and ER.
- Eye behavior—specifically, gaze patterns, pupil dilation, and fixation distributions—correlate more consistently (Pearson r ≈ 0.4–0.6) with ER, versus their correlation with FER (r ≈ 0.2–0.4), and are less amenable to voluntary control or social masking [2512.16485, Fig. 8].
- The adversarial decoupling strategy in MAFD explicitly suppresses modality-specific “camouflage” features, resulting in more robust and authentic affective representations.
- The EMT’s approach of querying with emotion-generic features and keying with modality-unique components achieves more effective crossmodal integration than naïve feature concatenation or unimodal queries.

## 7. Limitations and Future Directions

EMERT’s reliance on high-precision, laboratory-grade eye tracking (Tobii) constrains present-day applicability in unconstrained real-world settings. Prospective research will focus on:

- Affordable webcam-based gaze estimation.
- Extension to additional modalities (audio, text).
- Integration with broader-scale large multimodal foundation models (e.g., CLIP variants).
- Evaluation and adaptation for ecologically valid, in-the-wild contexts [2512.16485, Sec. VI].

Continued exploration and public release of EMER and EMERT provide a resource for advancing robust multimodal emotion recognition and for clarifying the distinctive contributions of eye behavior in affective computing [2512.16485].

Source: https://www.emergentmind.com/topics/eye-behavior-aided-mer-transformer-emert