CoolFace
Datasetpublic

seniruk/MELD-emotion-detection-preprocessed

Hi, I’m Seniru Epasinghe πŸ‘‹ I’m an AI undergraduate and an AI enthusiast, working on machine learning projects and open-source contributions.I enjoy exploring AI pipelines, natural language processing, and building tools that make development easier. 🌐 Connect with me ![Hugging Face](https://img.shields.io/badge/Hugging%20Face-seniruk-orange?logo=huggingface&logoColor=white) Multimodal Emotion Recognition Dataset (Processed from MELD)… See the full description on the dataset page: https://huggingface.co/datasets/seniruk/MELD-emotion-detection-preprocessed.

sourceHugging Facegpl-3.0updated 11mo agoView on Hugging Face
0likes79downloads
Dataset Card

Hi, I’m Seniru Epasinghe πŸ‘‹

I’m an AI undergraduate and an AI enthusiast, working on machine learning projects and open-source contributions. I enjoy exploring AI pipelines, natural language processing, and building tools that make development easier.

🌐 Connect with me

![Hugging Face](https://huggingface.co/seniruk)    ![Medium](https://medium.com/@senirukepasinghe)    ![LinkedIn](https://www.linkedin.com/in/seniru-epasinghe-b34b86232/)    ![GitHub](https://github.com/seth2k2) ---

Multimodal Emotion Recognition Dataset (Processed from MELD)

This dataset is a preprocessed and balanced version of the MELD Dataset, designed for multimodal emotion recognition research. It combines text, audio, and video modalities, each represented by a set of emotion probability distributions predicted by pretrained or custom-trained models.

Overview

FeatureDescription
Total Samples4,000 utterances
ModalitiesText, Audio, Video
Balanced EmotionsEach emotion class is approximately balanced
Cleaned SamplesVideos with unclear or no facial detection removed
Emotion Labels['angry', 'disgust', 'fear', 'happy', 'neutral', 'sad', 'surprise']

Each row in the dataset corresponds to a single utterance, along with emotion label, file name, and predicted emotion probabilities per modality.

Example Entry

UtteranceEmotionFile_NameMultiModel Predictions
You are going to a clinic!disgustdia127_utt3.mp4{"video": [0.7739, 0.0, 0.0, 0.0783, 0.1217, 0.0174, 0.0087], "audio": [0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], "text": [0.0005, 0.0, 0.0, 0.0007, 0.998, 0.0004, 0.0004]}

Column Description:

  • β€”Utterance β€” spoken text in the conversation.
  • β€”Emotion β€” gold-standard emotion label.
  • β€”File_Name β€” corresponding video file (utterance-level).
  • β€”MultiModel Predictions β€” JSON object containing model-predicted emotion probability vectors for each modality.

Modality Emotion Extraction

Each modality’s emotion vector was generated independently using specialized models:

ModalityModel / MethodDescription
Video`python-fer`Facial expression recognition using CNN-based FER library.
Audio`Custom-trained CNN model`Trained on Mel spectrogram features for emotion classification.
Text`arpanghoshal/EmoRoBERTa`Transformer-based text emotion model fine-tuned on GoEmotions dataset.

Format and Usage

  • β€”File format: CSV
  • β€”Recommended columns:
  • β€”Utterance
  • β€”Emotion
  • β€”File_Name
  • β€”Final_Emotion (JSON: { "video": [...], "audio": [...], "text": [...] })

This dataset is ideal for:

  • β€”Fusion model training
  • β€”Fine-tuning multimodal emotion models
  • β€”Benchmarking emotion fusion strategies
  • β€”Ablation studies on modality importance

Citation

References for the original MELD Dataset

  • β€”S. Poria, D. Hazarika, N. Majumder, G. Naik, R. Mihalcea, E. Cambria. MELD: A Multimodal Multi-Party Dataset for Emotion Recognition in Conversation (2018).
  • β€”Chen, S.Y., Hsu, C.C., Kuo, C.C. and Ku, L.W. EmotionLines: An Emotion Corpus of Multi-Party Conversations. arXiv preprint arXiv:1802.08379 (2018).

License & Acknowledgments

This dataset is a derivative work of MELD, used here for research and educational purposes. All credit for the original dataset goes to the MELD authors and contributors.