Skip to content

Commit

Permalink
revert fastmri input pipeline change
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Oct 23, 2023
1 parent c096464 commit 730be20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algorithmic_efficiency/workloads/fastmri/input_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def load_fastmri_split(global_batch_size,
h5_paths = glob.glob(file_pattern)
elif split == 'validation':
file_pattern = os.path.join(data_dir, _VAL_DIR, '*.h5')
h5_paths = sorted(glob.glob(file_pattern))
h5_paths = sorted(glob.glob(file_pattern))[:100]
elif split == 'test':
# The fastmri validation set is split into a validation and test set
file_pattern = os.path.join(data_dir, _VAL_DIR, '*.h5')
Expand Down

0 comments on commit 730be20

Please sign in to comment.