-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from Vishisht16/main
Added Speech Emotion Recognition
- Loading branch information
Showing
2 changed files
with
1,239 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
Natural Language Processing/Speech Emotion Recognition/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Speech Emotion Recognition (SER) using Deep Learning | ||
|
||
This project implements a **Speech Emotion Recognition (SER)** system using deep learning. It analyzes speech data and classifies it into different emotional states such as happy, sad, angry, neutral, etc. The model uses **CNNs (Convolutional Neural Networks)** to extract features from audio signals and predict emotions. | ||
|
||
## Features | ||
- **Data Augmentation**: Utilizes stretching, pitch shifting, and noise injection for robust training. | ||
- **Preprocessing**: MFCC extraction for audio features. | ||
- **CNN Model**: Built using Keras to classify speech emotions. | ||
- **Training & Evaluation**: Model training on augmented data, with accuracy and loss metrics visualization. | ||
|
||
## Datasets | ||
The project uses four open-source datasets: **RAVDESS**, **CREMA-D**, **SAVEE**, and **TESS**, which are downloaded on the go. | ||
|
||
## Model Architecture | ||
- **Conv1D layers** to capture temporal features. | ||
- **MaxPooling1D** for downsampling. | ||
- **Dense layers** for final classification. | ||
- **Dropout** to prevent overfitting. |
Oops, something went wrong.