Alexandre Gramfort
Alexandre Gramfort
it seems to be read: https://github.com/mne-tools/mne-matlab/blob/master/matlab/mne_read_source_spaces.m#L251 if you read it back from Python you recover the info?
please provide a full code snippet using sample data so we can debug faster.
@sivyobe I edited your code snippet. I can confirm the error. I don't have much time now. It's a bug in the matlab IO. maybe @SherazKhan knows what to do
either use memory or allow to pass precomputed PSDs
yes you need to test on a real size problem
I suspect you have 2 python versions installed on your system or that the install crashed somewhere
you'll need to fix mne-features for the new sklearn version
I would fix each feature function individually as depending on method 0 is a good default or not.
your data is of dtype int64 do: scores = cross_val_score(pipe, data.astype(float), y, cv=skf) and it works >
int64 and float64 are the same size. 64 bits per entry. It just needs to be fixed in mne-features. >