-
Notifications
You must be signed in to change notification settings - Fork 3
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
Consider a non-Cartesian space for the first two dimensions #7
Comments
NIFTI APPROACHA few updates on this: The NIFTI files have been significantly reduced in size: It allows us to use a centercrop in ivadomed of The disc topography representation has also been truncated to get rid of the edge effects: TIMESERIES APPROACHRegarding approaching this problem as a timeseries problem (mChannels x nSamples), I have added some EEG/MEG trials on Duke as described in #10 along a converter from Brainstorm .mat trial files to numpy for people to work in python |
@mpompolas and @jcohenadad An idea would be to represent electrodes as a graph. In https://arxiv.org/abs/2104.08336, the nodes are the electrodes and weighted edges are given by either (b) or (c) In this paper, they select 19 electrodes (always the same shown in the figure ) in each EEG clip to create the graph, covering They manage to obtain state-of-the-art results on detection and classification of seizure and present a self-supervised training method enabling to use the huge amount of unlabeled data available In https://arxiv.org/pdf/2106.09135.pdf, the nodes are the electrodes, the feature vector of each node is the signal of the node and several way to put weights are presented in the paper |
Currently, we resample the channels (eg n=64 channels) into a Cartesian space (eg: 128x128 matrix). This has lots of disadvantages:
An elegant solution would be to encode the coordinates of each channel and use this information to train a model. In this case, we would probably not use spatial convolutions anymore, but a variant of it.
The text was updated successfully, but these errors were encountered: