-
Notifications
You must be signed in to change notification settings - Fork 1
PyPREP bad channel detection #13
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
base: temp_dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1243,6 +1243,43 @@ | |
| Regular expression used for searching for calibration events | ||
| """ | ||
|
|
||
|
|
||
| ### Bad channel detection with PyPREP | ||
|
|
||
| # for parameter documentation see: | ||
| # https://pyprep.readthedocs.io/en/latest/generated/pyprep.NoisyChannels.html#pyprep.NoisyChannels | ||
|
|
||
| # run bad channel detection | ||
| pyprep_bad_chans: bool = False | ||
| ## variables which determine which algos to run | ||
| # run all available algos. if True | ||
| pyprep_all_bads: bool = True | ||
| # params for find_all_bads, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_all_bads_params: dict = dict() | ||
| # run snr algo | ||
| pyprep_by_SNR: bool = False | ||
| # run the correlation algo | ||
| pyprep_by_correlation: bool = False | ||
| # params for correlation, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_by_correlation_params: dict = dict() | ||
| # run the deviation algo | ||
| pyprep_by_deviation: bool = False | ||
| # params for deviation, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_by_deviation_params: dict = dict() | ||
| # run the hfnoise algo | ||
| pyprep_by_hfnoise: bool = False | ||
| # params for hfnoise, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_by_hfnoise_params: dict = dict() | ||
| # run the nan flat algo | ||
| pyprep_by_nan_flat: bool = False | ||
| # params for nan_flat, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_by_nan_flat_params: dict = dict() | ||
| # run the ransac algo | ||
| pyprep_by_ransac: bool = False | ||
| # params for ransac, defaults to empty dict, i.e. pyprep defaults | ||
| pyprep_by_ransac_params: dict = dict() | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ultimately we should have a useful default configuration. maybe the one defined in the original github-issue on mne-bids-pipeline is reasonable?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. he seems to just use the defaults?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that's too bad then, if it fails misserably for us :( We have to find our own defaults then. |
||
|
|
||
|
|
||
| # ### SSP, ICA, and artifact regression | ||
|
|
||
| regress_artifact: dict[str, Any] | None = None | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.