Пікірлер
@danastantasaoufmridula222
@danastantasaoufmridula222 9 ай бұрын
excellent explanation! please share more videos about emotion recognition based on EEG.
@HarshaSravani--c
@HarshaSravani--c Жыл бұрын
Could anyone explain the features(columns) in the dataset
@vanessaclavijo5073
@vanessaclavijo5073 Жыл бұрын
did you get any answer?
@Elamathi_Pandi
@Elamathi_Pandi 2 жыл бұрын
Hi, Pls help me with the following error (AttributeError: module 'keras.api._v2.keras.callbacks' has no attribute 'Earlystooping')
@jvedarutvija7517
@jvedarutvija7517 2 жыл бұрын
is it DEAP dataset?
@benco-gi1zn
@benco-gi1zn 2 жыл бұрын
Hello, Does someone know to what correpond the features of the data set plz ?! There are more than 2000 features. Can it be the measures of the signal at any time t for t in range (1,2000) for example? Or is there a transformation of the data ? Calculate the mean of each signal, the energy, and then find 2000 transformations.
@hazemakram4249
@hazemakram4249 2 жыл бұрын
the output of the EEG Devices not looks like what you showed in the video, Can you explain more what did you do in per-processing & feature extraction process ? Also what and how many channels used for this dataset ?
@rimshamahrukh1201
@rimshamahrukh1201 2 жыл бұрын
How did you arrange your dataset?
@chiragshivanandtandel8817
@chiragshivanandtandel8817 2 жыл бұрын
Sir can I know what does the label name indicate???(mean_0_a, mean_0_b,......etc)
@chiragshivanandtandel8817
@chiragshivanandtandel8817 2 жыл бұрын
Thanks a lot for explaining the code.
@manuelillanes1635
@manuelillanes1635 3 жыл бұрын
Hi, I have some questions, how many channels and at which sampling frequency it was recording. Do you know which channel show the most accuracy? Did you do any processing steps? How many people was recorded for the dataset?
@vanessaclavijo5073
@vanessaclavijo5073 Жыл бұрын
Did you get any answer about preprocessing? how did he get mean, covmat and all those values?
@LifeCornerByMithun
@LifeCornerByMithun 3 жыл бұрын
Sir while i am running the epoch line it is showing alla error
@kanizmithun460
@kanizmithun460 3 жыл бұрын
sir, can you help me please in this rnn.
@Mohamm-ed
@Mohamm-ed 3 жыл бұрын
Mir Ali I need your help. I have multiple EEG files as CSV. Each csv file for one subject and contains 64 rows which are the channels and more than 5000 columns which are the electrodes readings from each channel with no labels. Part of the files for patient with pain and the other are without pain. The questions are: 1. Do I need to lable each row in the file because I want to use them for classification. 2. If yes how can I do the labeling? 3. Do I need to merge the file in one single csv file. 4. Are the lables for all the file the same let's say the pain file? Thansk in advance I hole you answe my questions I know they're too much but really I'm new to this feild.
@vuhathanh4623
@vuhathanh4623 2 жыл бұрын
I also need know something like this. Can you help me. Tks
@Mohamm-ed
@Mohamm-ed 2 жыл бұрын
@@vuhathanh4623 did you find the way of doing that ?
@samarth2915
@samarth2915 2 жыл бұрын
read Pandas documentation u will be able to it, it's pretty easy
@samvidhaalandge968
@samvidhaalandge968 Жыл бұрын
yes youll be needing to label them and you can do by first creating groups of patients with pain and patients with no pain. For labels for example you can label patients with pain as 0 and the other with 1.
@MrAlmoOndo
@MrAlmoOndo Жыл бұрын
I don't know if you were able to get an answer but I'm answering for other people who might need this: 1. Normally channels are in columns and the data for each data point recorded is in row, so the data should look like 5000 rows and 64 columns. I'm assuming you can load csv into dataframe then you can do this by using transpose function in Pandas which is basically df = df.T 2. You can then label the channels with df.columns= ['ch1', 'ch2', ... , 'ch64'] 3. Its better to have a single dataframe of all the participants so that you can input the data into the model for classification, also helps with shuffle, normalize, etc if the data is in a single df 4. In this video the data shown is already preprocessed, so the column names that you see (eg. fft_740_b) are the features extracted from raw channel data. You can check eeglib library which extracts some of the features in a very easy format
@Mohamm-ed
@Mohamm-ed 3 жыл бұрын
Thanks very much for the video for doing awesome job.. Hope you make more videos about EEG