Beyond Words: A Multi-Stream LSTM Approach to Polish Emotion Recognition

Multimodal Emotion Recognition in Polish (Student Consortium)

2020-09-01
Kritika Rupauliha, Aman Goyal, Aman Saini, Akshay Shukla, Sridhar Swaminathan
Summary
Problem
Method
Results
Takeaways
Abstract

This paper presents a multimodal emotion recognition system specifically designed for the Polish Emotion dataset, integrating facial expressions, speech, and body language. The authors employ modality-specific Long Short-Term Memory (LSTM) networks combined via a weighted average fusion approach to achieve a state-of-the-art testing accuracy of 74.6%.

TL;DR

Recognizing human emotion is a multidimensional puzzle. This research introduces a robust framework for the Multimodal Emotion Recognition in Polish challenge, leveraging LSTMs to process three distinct data streams: facial geometry, body skeletal movement, and vocal acoustics. By fusing these modalities using a weighted average, the system achieves a superior test accuracy of 74.6%, proving that the whole is indeed greater than the sum of its parts.

Background: Why Multimodal?

Emotion recognition is no longer just about static images of smiles or frowns. In real-world scenarios—ranging from healthcare to crime detection—emotions are expressed through a sequence of subtle cues. The authors identify five core challenges in multimodal learning: Representation, Translation, Alignment, Fusion, and Co-learning. This paper focuses specifically on solving the Fusion challenge within the context of Polish culture and language.

The Core Architecture: A Triple-Threat LSTM

Standard algorithms often fail on video because they cannot handle variable lengths or the temporal "flow" of an emotion. The authors replace traditional classifiers with three specialized Long Short-Term Memory (LSTM) networks.

1. Body Language (The Kinect Stream)

Using Kinect sensors, the team tracks 25 skeletal joints. To prevent overfitting on the small Polish dataset, they employed data augmentation via horizontal flipping of landmark coordinates. The 25 joints in Kinect capture data

2. Facial Expression (The Geometric Stream)

Instead of raw pixel intensities, which are sensitive to lighting and actor positioning, the authors extracted 68 facial landmarks. They calculated a Euclidean distance matrix between all points, effectively creating a "face graph" that remains stable even if the actor moves within the frame. The 68 facial landmarks

3. Speech (The Acoustic Stream)

Audio was processed using MFCCs (Mel-Frequency Cepstral Coefficients)—the gold standard for hardware-efficient speech feature extraction. The signals were segmented into 5-second windows to ensure consistent temporal modeling in the LSTM.

Fusion Logic: Turning Probabilities into Decisions

The genius of the system lies in its Weighted Average Fusion. Each LSTM outputs a probability distribution across seven states (Neutral, Sadness, Surprise, Fear, Anger, Disgust, Happiness). The final decision is a weighted consensus, ensuring that if one modality is noisy (e.g., motion blur in the video), the other modalities (e.g., audio) can compensate. Flow diagram of multimodal emotion recognition

Experimental Breakthroughs

The "Late Fusion" strategy proved highly effective. While body gestures alone only reached 62.25% accuracy, the combined model pushed the performance to 74.6%.

ModalityTraining AccTesting Acc
Baseline (CNN)94.37%72.98%
Speech (LSTM)93.00%61.00%
Fusion Results95.25%74.60%

Critical Insight: The Value of "Small Data"

One of the most impressive aspects of this work is how it handles a relatively small dataset (63 training videos). By using feature-level extraction (Landmarks and MFCCs) rather than raw end-to-end deep learning, the authors reduced the parameter space, making the LSTMs easier to train without massive overfitting.

Conclusion & Future Outlook

This research establishes a solid baseline for Slavic-language emotion recognition. The next frontier? Real-time deployment. Moving from archived video to live, "in-the-wild" streams with background noise will require even more sophisticated attention mechanisms. However, the use of skeletal and geometric features provides a privacy-conscious and computationally efficient roadmap for future AI agents.

Takeaway: Multimodal fusion isn't just a luxury; it's a necessity for robust affective computing.

Find Similar Papers

Try Our Examples

  • Find recent papers from 2024-2026 that utilize Transformer-based architectures or Cross-Modal Attention for the Polish Multimodal Emotion Recognition challenge to compare against LSTM baselines.
  • Which study first established the 68-point facial landmark distance matrix as a robust feature for expression recognition, and how have recent Graph Neural Networks (GNNs) improved upon this representation?
  • Explore how the fusion techniques used in this paper have been adapted for real-time emotion detection in human-robot interaction (HRI) or criminal justice surveillance systems.
Contents
Beyond Words: A Multi-Stream LSTM Approach to Polish Emotion Recognition
1. TL;DR
2. Background: Why Multimodal?
3. The Core Architecture: A Triple-Threat LSTM
3.1. 1. Body Language (The Kinect Stream)
3.2. 2. Facial Expression (The Geometric Stream)
3.3. 3. Speech (The Acoustic Stream)
4. Fusion Logic: Turning Probabilities into Decisions
5. Experimental Breakthroughs
6. Critical Insight: The Value of "Small Data"
7. Conclusion & Future Outlook