From c0e9cbbbc8fe711fc099276ff88538916378a238 Mon Sep 17 00:00:00 2001 From: georgeyiasemis Date: Fri, 10 Nov 2023 01:46:34 +0100 Subject: [PATCH] Minor changes --- projects/CMRxRecon/tools/create_data_dir.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/CMRxRecon/tools/create_data_dir.py b/projects/CMRxRecon/tools/create_data_dir.py index 5d89cb7b..bf615d64 100644 --- a/projects/CMRxRecon/tools/create_data_dir.py +++ b/projects/CMRxRecon/tools/create_data_dir.py @@ -102,7 +102,7 @@ full_sample_path = training_set_path / "FullSample" full_sample_with_masks_path = training_set_path / "FullSampleWithMasks" -training_symbolic_path = args.target_path / "training" +training_symbolic_path = args.target_path / "MultiCoil" / args.data_type / "training" # Check if the required directories exist if not data_path.exists(): @@ -129,8 +129,8 @@ validation_set_path = data_path / "ValidationSet" test_set_path = data_path / "TestSet" -validation_symbolic_path = validation_set_path / "validation" -test_symbolic_path = test_set_path / "test" +validation_symbolic_path = args.target_path / "MultiCoil" / args.data_type / "validation" +test_symbolic_path = args.target_path / "MultiCoil" / args.data_type / "test" for acceleration in ACCELERATIONS: validation_acceleration_path = validation_set_path / f"AccFactor{acceleration}"