From 27f5532d2f1f7b02b3f500c78df76dfa8dbe2c73 Mon Sep 17 00:00:00 2001 From: luiz Date: Fri, 10 May 2024 13:35:13 +0200 Subject: [PATCH] update default args --- common/models_preprocessing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/models_preprocessing.py b/common/models_preprocessing.py index 33b9300..a6d1534 100644 --- a/common/models_preprocessing.py +++ b/common/models_preprocessing.py @@ -171,6 +171,6 @@ class PreprocessingContext(BaseModel): common_reference: CommonReference = Field(default=CommonReference(), description="Common reference") highpass_spatial_filter: HighpassSpatialFilter = Field(default=HighpassSpatialFilter(), description="Highpass spatial filter") motion_correction: MotionCorrection = Field(default=MotionCorrection(), description="Motion correction") - remove_out_channels: bool = Field(default=False, description="Flag to remove out channels") - remove_bad_channels: bool = Field(default=False, description="Flag to remove bad channels") - max_bad_channel_fraction_to_remove: float = Field(default=1.1, description="Maximum fraction of bad channels to remove") + remove_out_channels: bool = Field(default=True, description="Flag to remove out channels") + remove_bad_channels: bool = Field(default=True, description="Flag to remove bad channels") + max_bad_channel_fraction_to_remove: float = Field(default=0.7, description="Maximum fraction of bad channels to remove")