Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikhil-kotecha/Emotional_Dialogue
A Deep Reinforcement Learning Approach (LSTM + policy gradient) to create a chatbot that produces coherent, emotional dialogue.
https://github.com/nikhil-kotecha/Emotional_Dialogue
cnn lstm-neural-networks policy-gradient reinforcement-learning tensorflow
Last synced: 6 days ago
JSON representation
A Deep Reinforcement Learning Approach (LSTM + policy gradient) to create a chatbot that produces coherent, emotional dialogue.
- Host: GitHub
- URL: https://github.com/nikhil-kotecha/Emotional_Dialogue
- Owner: nikhil-kotecha
- Created: 2018-03-19T19:30:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-07T11:22:24.000Z (over 6 years ago)
- Last Synced: 2024-08-02T15:06:08.223Z (3 months ago)
- Topics: cnn, lstm-neural-networks, policy-gradient, reinforcement-learning, tensorflow
- Language: Python
- Homepage:
- Size: 160 KB
- Stars: 25
- Watchers: 0
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Emotional Speech and Chat
This project aims to implement and train all of the component models necessary for a chatbot which focuses on emotional relevance in chat.
The dialogue generation is completed using a reinforcement learning model.
The emotion recognition model classifies an input audio signal into one of six emotions:
* happy
* sad
* frustrated
* neutral
* angry
* excitedThe speech recognition model is a reimplementation of Listen, Attend, and Spell by William Chen, et. al
Training functions are located in Jupyter notebooks for ease of running.
#### Datasets used for training
* IEMOCAP emotional dialogue: emotional speech recognition
* Mozilla Common Voice: speech recognition
* Cornell Movie Dialog Corpus: conversation generation#### Directories
* rl_model: reinforcement learning models and training
* speech_models: emotion and speech recognition models
* utils: feature extraction and data loading helpers
#### Key References[1] Chan, William, et al. "Listen, attend and spell." (2015).
[2] Chernykh, Vladimir, Grigoriy Sterling, and Pavel Prihodko.
"Emotion recognition from speech with recurrent neural networks."
arXiv preprint arXiv:1701.08071 (2017).[3] Li, Jiwei, et al. "Deep reinforcement learning for dialogue generation."
rXiv preprint arXiv:1606.01541 (2016).