Skip to content

Commit

Permalink
Use Spatial Guide by Default (#173)
Browse files Browse the repository at this point in the history
Co-authored-by: Quinn <[email protected]>
  • Loading branch information
jeffquinn-msk and Quinn authored Apr 19, 2024
1 parent 74fe064 commit 93be530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bayestme/cli/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def add_deconvolution_arguments(parser: argparse.ArgumentParser):
parser.add_argument(
"--use-spatial-guide",
help="Use spatial guide (variational family with spatial priors) for SVI",
action="store_true",
default=False,
action=argparse.BooleanOptionalAction,
default=True,
)

return parser
1 change: 1 addition & 0 deletions src/bayestme/cli/deconvolve_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def test_deconvolve():
"100",
"--n-components",
"5",
"--no-use-spatial-guide",
]

try:
Expand Down

0 comments on commit 93be530

Please sign in to comment.