From fc4f0be4f102ab7f33b8c5417ea7ee8ca06f6e4c Mon Sep 17 00:00:00 2001 From: Geoffrey Woollard Date: Wed, 26 Jun 2024 10:17:35 -0400 Subject: [PATCH] test svd config --- tests/config_files/test_config_svd.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/config_files/test_config_svd.yaml diff --git a/tests/config_files/test_config_svd.yaml b/tests/config_files/test_config_svd.yaml new file mode 100644 index 0000000..460a194 --- /dev/null +++ b/tests/config_files/test_config_svd.yaml @@ -0,0 +1,14 @@ +path_to_volumes: tests/data/dataset_2_submissions/ +box_size_ds: 32 +submission_list: [1] +experiment_mode: "all_vs_ref" # options are "all_vs_all", "all_vs_ref" +# optional unless experiment_mode is "all_vs_ref" +path_to_reference: tests/data/Ground_truth/test_maps_gt_flat_10.pt +dtype: "float32" # options are "float32", "float64" +output_options: + # path will be created if it does not exist + output_path: tests/results/svd + # whether or not to save the processed volumes (downsampled, normalized, etc.) + save_volumes: True + # whether or not to save the SVD matrices (U, S, V) + save_svd_matrices: True