Skip to content

Commit

Permalink
update default args
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed May 10, 2024
1 parent eca59f5 commit 27f5532
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/models_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 27f5532

Please sign in to comment.