SkillAgentSearch skills...

Multimodal Speech Emotion

TensorFlow implementation of "Multimodal Speech Emotion Recognition using Audio and Text," IEEE SLT-18

Install / Use

npx skills add david-yoon/multimodal-speech-emotion

Installs into whichever agent you are using.

About this skill

Quality Score

0/100

Supported Platforms

Universal

README

multimodal-speech-emotion

This repository contains the source code used in the following paper,

Multimodal Speech Emotion Recognition using Audio and Text, IEEE SLT-18, <a href="https://arxiv.org/abs/1810.04635">[paper]</a>


[requirements]

tensorflow==1.4 (tested on cuda-8.0, cudnn-6.0)
python==2.7
scikit-learn==0.20.0
nltk==3.3

[download data corpus]

  • IEMOCAP <a href="https://sail.usc.edu/iemocap/iemocap_release.htm">[link]</a> <a href="https://link.springer.com/article/10.1007/s10579-008-9076-6">[paper]</a>
  • download IEMOCAP data from its original web-page (license agreement is required)

[preprocessed-data schema (our approach)]

  • <a href="https://forms.gle/4qV4BgXDMz4UoYxe8">Get the preprocessed dataset [application link]</a>

    If you want to download the "preprocessed dataset," please ask the license to the IEMOCAP team first.

  • for the preprocessing, refer to codes in the "./preprocessing"

  • We cannot publish ASR-processed transcription due to the license issue (commercial API), however, we assume that it is moderately easy to extract ASR-transcripts from the audio signal by oneself. (we used google-cloud-speech-api)

  • Format of the data for our experiments:<br>

    MFCC : MFCC features of the audio signal (ex. train_audio_mfcc.npy) <br> [#samples, 750, 39] - (#sampels, sequencs(max 7.5s), dims) <br>

    MFCC-SEQN : valid lenght of the sequence of the audio signal (ex. train_seqN.npy)<br> [#samples] - (#sampels) <br>

    PROSODY : prosody features of the audio signal (ex. train_audio_prosody.npy) <br> [#samples, 35] - (#sampels, dims) <br>

    TRANS : sequences of trasnciption (indexed) of a data (ex. train_nlp_trans.npy) <br> [#samples, 128] - (#sampels, sequencs(max)) <br>

    LABEL : targe label of the audio signal (ex. train_label.npy) <br> [#samples] - (#sampels) <br>

[source code]

  • repository contains code for following models

    Audio Recurrent Encoder (ARE) <br> Text Recurrent Encoder (TRE) <br> Multimodal Dual Recurrent Encoder (MDRE) <br> Multimodal Dual Recurrent Encoder with Attention (MDREA) <br>


[training]

  • refer "reference_script.sh"
  • fianl result will be stored in "./TEST_run_result.txt" <br>

[cite]

  • Please cite our paper, when you use our code | model | dataset

    @inproceedings{yoon2018multimodal, <br> title={Multimodal Speech Emotion Recognition Using Audio and Text}, <br> author={Yoon, Seunghyun and Byun, Seokhyun and Jung, Kyomin}, <br> booktitle={2018 IEEE Spoken Language Technology Workshop (SLT)}, <br> pages={112--118}, <br> year={2018}, <br> organization={IEEE} <br> }

Related Skills

View on GitHub
GitHub Stars297
CategoryEducation
Updated5mo ago
Forks72

Languages

Jupyter Notebook

Security Score

97/100

Audited on Mar 6, 2026

No findings