Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeyiasemis committed Nov 10, 2023
1 parent a3424fc commit c0e9cbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/CMRxRecon/tools/create_data_dir.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand All @@ -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}"
Expand Down

0 comments on commit c0e9cbb

Please sign in to comment.