CNN for EEG 2-class pattern classification

20 Ansichten (letzte 30 Tage)
Joana
Joana am 5 Dez. 2019
Kommentiert: Mahesh Taparia am 10 Dez. 2019
Hi
I am new to using the deep learning for classifcation so i have some basic questions, i will highly appreciate if anyone can help through.
I have EEG data collected from 16 channels,at 1200 sampling frequency of two classes. After pre-processing i have extracted the epochs of two classes (for N=100 for each class) for 1second which are in this format: 1200x16x100.I need to train the CNN to classify the class 1 and 2 with 70% training data and 30% for testing.
1: How to prepare the data for training and testing/target.?
2: How to assign the labels to each class for training/testing in CNN.?

Akzeptierte Antwort

Mahesh Taparia
Mahesh Taparia am 9 Dez. 2019
Hi Naina,
You have an EEG dataset of two classes of dimensions 1200X16X100. Initially, put the dataset of both the classes into two separate folders with their folder name as their labels. Convert this dataset into datastore using ‘datastore’ function. You can split the training and testing dataset using splitEachLabel function.
You can refer to this link for image classification. In your case instead of images as input, some matrix is there which can be loaded using datastore function.
To create a custom model, you can refer to this documentation.
  2 Kommentare
Joana
Joana am 9 Dez. 2019
Hi Mahesh
Thanks for the reply.
i have 2 questions actually.
1: What is the 'datastore' function.? i need to work with the time series points instead of converting it into the images.
2: I played around and converted the 1200X16X100 to 100x19200 of each class. and used that as input. so input is: 200x19200.
Then i generated a variable Target of size 200x1, where 100 are '0' and 100 are'1' as labels.
I used this to run with the pattern recognition GUI and it gives the training accuracy of 100% and and testing accuracy of 98.9%.
I don't know if this is the right way to do.? Can you please comment on it as well.?
Mahesh Taparia
Mahesh Taparia am 10 Dez. 2019
Hi Naina,
The 'datastore' function creates a datastore, which is a repository for collections of data. For more more information of this function, you can refer to this link.
There are multiple ways to classify time series data, for example using RNN, CNN etc. You can refer to some research papers in this regards.
Regarding your approach, there is a tutorial on this using CNN. You can refer this link.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu EEG/MEG/ECoG finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by