Skip to content

Commit 2442e66

Browse files
committed
remove useless changes
1 parent 72d09bc commit 2442e66

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

src/cli-conf/scenario2.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,16 @@ engine:
5252
nufft_backend: "stacked-gpunufft"
5353
reconstructors:
5454
# adjoint:
55-
# nufft_backend: "stacked-gpunufft"/snake-fmri
55+
# nufft_backend: "stacked-gpunufft"
56+
# density_compensation: "pipe"
57+
sequential:
58+
nufft_backend: "stacked-gpunufft"
59+
density_compensation: false
60+
restart_strategy: WARM
61+
max_iter_per_frame: 50
62+
wavelet: "sym4"
63+
64+
5665

5766

5867

@@ -78,4 +87,4 @@ hydra:
7887
latest_run:
7988
_target_: hydra_callbacks.LatestRunLink
8089
run_base_dir: ${result_dir}/outputs
81-
multirun_base_dir: ${result_dir}/multirun
90+
multirun_base_dir: ${result_dir}/multirun

src/snake/toolkit/cli/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ def cleanup_cuda() -> None:
125125
def make_hydra_cli(fun: callable) -> callable:
126126
"""Create a Hydra CLI for the function."""
127127
return hydra.main(
128-
version_base=None, config_path="../../../cli-conf", config_name="scenario2-2d"
128+
version_base=None, config_path="../../../cli-conf", config_name="config"
129129
)(fun)

src/snake/toolkit/cli/reconstruction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def reconstruction(cfg: DictConfig) -> None:
5353
# array = Reconstructor.reconstruct(dataloader, sim_conf)
5454
with DataLoader(cfg.filename) as data_loader:
5555
for name, rec in cfg.reconstructors.items():
56-
rec_str = str(rec) # FIXME Also use parameters of reconstructors maybe just name???
56+
rec_str = str(rec) # FIXME Also use parameters of reconstructors
5757
data_rec_file = Path(f"data_rec_{rec_str}.npy")
5858
log.info(f"Using {name} reconstructor")
5959
rec.setup(sim_conf)

0 commit comments

Comments
 (0)