autoreject.
AutoReject
(n_interpolate=None, consensus=None, thresh_func=None, cv=10, picks=None, thresh_method='bayesian_optimization', n_jobs=1, random_state=None, verbose='progressbar')[source]¶Efficiently find n_interpolate and consensus.
Note
AutoReject by design supports multiple channels. If no picks are passed, separate solutions will be computed for each channel type and internally combined. This then readily supports cleaning unseen epochs from the different channel types used during fit.
The values to try for percentage of channels that must agree as a fraction of the total number of channels. This sets \(\\kappa/Q\). If None, defaults to np.linspace(0, 1.0, 11)
The values to try for the number of channels for which to interpolate. This is \(\\rho\). If None, defaults to np.array([1, 4, 32])
Defaults to cv=10
The channels to be considered for autoreject. If None, defaults to data channels {‘meg’, ‘eeg’}, which will lead fitting and combining autoreject solutions across these channel types. Note that, if picks is None, autoreject ignores channels marked bad in epochs.info[‘bads’].
‘bayesian_optimization’ or ‘random_search’
The number of jobs.
The seed of the pseudo random number generator to use.
The verbosity of progress messages. If ‘progressbar’, use mne.utils.ProgressBar. If ‘tqdm’, use tqdm.tqdm. If ‘tqdm_notebook’, use tqdm.tqdm_notebook. If False, suppress all output messages.
The instances of _AutoReject for each channel type.
The sensor-level thresholds with channel names as keys and the peak-to-peak thresholds as the values.
The cross validation error for different parameter values.
The estimated consensus per channel type.
The estimated n_interpolate per channel type.
The data channels considered by autoreject. By default only data channels, not already marked as bads are considered.
Methods
|
Fit the epochs on the AutoReject object. |
|
Estimate the rejection params and finds bad epochs. |
|
Get rejection logs of epochs. |
|
Save autoreject object. |
|
Remove bad epochs, repairs sensors and returns clean epochs. |
__init__
(self, n_interpolate=None, consensus=None, thresh_func=None, cv=10, picks=None, thresh_method='bayesian_optimization', n_jobs=1, random_state=None, verbose='progressbar')[source]¶Init it.
Methods
|
Init it. |
|
Fit the epochs on the AutoReject object. |
|
Estimate the rejection params and finds bad epochs. |
|
Get rejection logs of epochs. |
|
Save autoreject object. |
|
Remove bad epochs, repairs sensors and returns clean epochs. |