AlessioQuercia / Emotion_Recognition

Emotion recognition from EEG signals using a SVM classifier.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Emotion Recognition from EEG Signals

Overview

This repository is intended to keep track of the project related to the Natural Interaction and Models of Affective and Behavioral Computing courses for the Computer Science Master at UniversitĂ  degli Studi di Milano.

Info

This project concerns emotion recognition from EEG signals dealt with by using a SVM classifier based on libsvm library, relying on the method described in the article.

This method consists in making classification and prediction using features extracted from decomposed EEG signals.

First of all, EEG signals taken from the DEAP dataset are decomposed into IMFs (Intrinsic Mode Functions) using the EMD (Empirical Mode Decomposition), then the first difference of time series, the first difference of phase and the normalized energy are extracted as features from the first IMF, the most informative one. Two disjoint sets are formed using the extracted features: a training set and a test set. Classification was made on the training set and the respective label set; then, prediction was made on the test set, to test the trained model on a different set without giving it the labels as input. Predicted values was confronted with the labels to check if the model prediction was right or wrong. Using cross-validation, it was possible to extimate the model accuracy for a single participant in the DEAP dataset. Finally the method accuracy was computed as the mean of the accuracies computed on the single participants.

For more info, read the report inside the repository.

Links

Article: https://www.hindawi.com/journals/bmri/2017/8317357

About

Emotion recognition from EEG signals using a SVM classifier.


Languages

Language:Python 100.0%