Beyond Words: A Multi-Stream LSTM Approach to Polish Emotion Recognition
Multimodal Emotion Recognition in Polish (Student Consortium)
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.

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.

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.

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%.
| Modality | Training Acc | Testing Acc |
|---|---|---|
| Baseline (CNN) | 94.37% | 72.98% |
| Speech (LSTM) | 93.00% | 61.00% |
| Fusion Results | 95.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.
