Problem: I just updated the version of mne-features, I am using mne_features.feature_extraction.extract_features() but no matter what the input arguments are, it pops up the following error:
TypeError: _check_input() got an unexpected keyword argument 'reset'
Version: 0.2
Problem: I just updated the version of mne-features, I am using
mne_features.feature_extraction.extract_features()
but no matter what the input arguments are, it pops up the following error:TypeError: _check_input() got an unexpected keyword argument 'reset'
An example could be:
feature = extract_features(X = data, sfreq = 250.0, selected_funcs = 'max_cross_corr', funcs_params = {'max_cross_corr__include_diag': False})
With data being a numpy array with shape: (318, 2, 500), i.e. (n_epochs, n_channels, n_times)
Any ideas?