Skip to content

Commit

Permalink
lower defaults for interp
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Oct 21, 2024
1 parent e94ffd7 commit 2b01391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dolphin/workflows/config/_unwrap_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class PreprocessOptions(BaseModel, extra="forbid"):
description="(for interpolation) Maximum radius to find scatterers.",
)
interpolation_cor_threshold: float = Field(
0.5,
0.3,
description=(
"Threshold on the correlation raster to use for interpolation. Pixels with"
" less than this value are replaced by a weighted combination of"
Expand All @@ -77,7 +77,7 @@ class PreprocessOptions(BaseModel, extra="forbid"):
le=1.0,
)
interpolation_similarity_threshold: float = Field(
0.5,
0.3,
description=(
"Threshold on the correlation raster to use for interpolation. Pixels with"
" less than this value are replaced by a weighted combination of"
Expand Down

0 comments on commit 2b01391

Please sign in to comment.