-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EEG Classification #30
Comments
Hi, you would have to add a new data class in The data class sets up one or more pandas DataFrame(s) containing all data, indexed by example IDs. These dataframes are accessed by the Pytorch In your case, the 120000 time steps are far too many for a single sample. For this reason, you should try some or a combination of the following: (a) downsampling/low-pass filtering the input signal, if this temporal resolution is not really necessary, (b) windowing the input signal, i.e. dividing it in multiple (possibly overlapping) windows of a fixed length L, where L should be up to something like ~512 samples. This should work well for pre-training. |
Thank you for the suggestions. In case of windowing, the final decision at testing stage will be for each window i.e. a single patient can have different decision for different windows?? |
|
I am implementing your paper for EEG classification. The EEG data is of dimension 19x120000 where 19 is the number of electrodes and 120000 are the time points. I would like to understand how this dataset can be added to the code for the implementation.
The text was updated successfully, but these errors were encountered: