CNN for EEG 2-class pattern classification
4 views (last 30 days)
Show older comments
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.?
0 Comments
Accepted Answer
Mahesh Taparia
on 9 Dec 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.
2 Comments
Mahesh Taparia
on 10 Dec 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.
More Answers (0)
See Also
Categories
Find more on Pattern Recognition and Classification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!